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