Only run docker compose down when project exists
Infrastructure / Check and run Ansbile playbooks (pull_request) Successful in 1m55s
Details
Infrastructure / Check and run Ansbile playbooks (pull_request) Successful in 1m55s
Details
This commit is contained in:
parent
94a836f135
commit
0e35264f2b
|
@ -8,7 +8,12 @@
|
||||||
ansible.builtin.wait_for_connection:
|
ansible.builtin.wait_for_connection:
|
||||||
timeout: 300
|
timeout: 300
|
||||||
|
|
||||||
|
- name: Check if project exists
|
||||||
|
ansible.builtin.stat:
|
||||||
|
path: "$HOME/{{ app }}"
|
||||||
|
register: project
|
||||||
- name: Docker compose down
|
- name: Docker compose down
|
||||||
|
when: project.stat.exists
|
||||||
community.docker.docker_compose_v2:
|
community.docker.docker_compose_v2:
|
||||||
project_src: "$HOME/{{ app }}"
|
project_src: "$HOME/{{ app }}"
|
||||||
state: absent
|
state: absent
|
||||||
|
|
Loading…
Reference in New Issue