This repository has been archived on 2026-03-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
kube_build/playbooks/clean.yml
T
2023-12-14 15:27:40 -05:00

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