infrastructure/coreos-config/roles/compose_project/tasks/remove.yml

19 lines
411 B
YAML
Raw Normal View History

---
2023-02-28 20:17:23 +01:00
- name: Check if service is present
stat:
path: "{{ service_dir | mandatory }}"
register: dir
- name: Stop Service
community.docker.docker_compose:
project_src: "{{ service_dir | mandatory }}"
state: absent
remove_orphans: true
2023-02-28 20:17:23 +01:00
when: dir.stat.exists == True
- name: Remove Service
file:
state: absent
path: "{{ service_dir | mandatory }}"
2023-02-28 20:17:23 +01:00
when: dir.stat.exists == True