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:17:58 -05:00

16 lines
383 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: /home/jeet/OCI_Build/docker
ignore_errors: yes
- name: Remove build folder
ansible.builtin.file:
state: absent
path: /home/jeet/OCI_Build/
force: true