18 lines
333 B
YAML
18 lines
333 B
YAML
|
---
|
||
|
|
||
|
- name: Copy conf
|
||
|
ansible.builtin.copy:
|
||
|
backup: true
|
||
|
src: .
|
||
|
dest: volume_restore/
|
||
|
register: volume_restore_copy
|
||
|
|
||
|
- name: Build image
|
||
|
community.docker.docker_image:
|
||
|
name: volume_restore
|
||
|
tag: latest
|
||
|
build:
|
||
|
path: volume_restore
|
||
|
source: build
|
||
|
become: yes
|
||
|
when: volume_restore_copy.changed
|