Fix #53: New docker compose down in Ansible fix (#58)
Infrastructure / Check and run Ansbile playbooks (push) Failing after 1m59s Details

Only run docker compose down when project files exist.

Reviewed-on: #58
This commit is contained in:
Gleb Koval 2024-03-30 01:36:20 +00:00
parent 94a836f135
commit b532c40bd1
1 changed files with 5 additions and 0 deletions

View File

@ -8,7 +8,12 @@
ansible.builtin.wait_for_connection:
timeout: 300
- name: Check if project exists
ansible.builtin.stat:
path: "$HOME/{{ app }}"
register: project
- name: Docker compose down
when: project.stat.exists
community.docker.docker_compose_v2:
project_src: "$HOME/{{ app }}"
state: absent