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-11 15:08:04 -05:00

15 lines
338 B
YAML

- name: Clean OCI Stack
hosts: Docker
tasks:
- name: Stop containers using Docker Compose
ansible.builtin.command:
cmd: docker compose down
chdir: ~/OCI_Build/docker
ignore_errors: yes
- name: Remove build folder
ansible.builtin.file:
state: absent
path: ~/OCI_Build/docker