16 lines
352 B
YAML
16 lines
352 B
YAML
- name: Clean OCI Stack
|
|
hosts: Docker
|
|
become: yes
|
|
tasks:
|
|
|
|
- name: Stop containers using Docker Compose
|
|
ansible.builtin.command:
|
|
cmd: docker compose down
|
|
chdir: ~/docker
|
|
ignore_errors: yes
|
|
|
|
- name: Remove build folder
|
|
ansible.builtin.file:
|
|
state: absent
|
|
path: ~/docker/
|
|
force: true |