22 lines
448 B
YAML
Raw Normal View History

2022-10-10 23:15:28 +02:00
# remove db
- name: Stopping existing service
community.docker.docker_compose:
project_src: "{{ project_src }}"
state: absent
remove_volumes: yes
remove_images: local
register: output
- name: Debug output
debug:
var: output
2022-10-11 22:50:34 +02:00
- name: Remove project
2022-10-10 23:15:28 +02:00
file:
path: "{{ project_src }}"
2022-11-06 18:31:35 +01:00
state: absent
vars:
ansible_become: yes
ansible_become_method: sudo
ansible_become_password: "{{ sudo_password }}"