18 lines
341 B
YAML
18 lines
341 B
YAML
|
# 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
|
||
|
|
||
|
- name: Remove project covas db
|
||
|
file:
|
||
|
path: "{{ project_src }}"
|
||
|
state: absent
|