Intial Commit

This commit is contained in:
madereddy
2024-12-09 16:33:22 +00:00
commit a79ab09fc7
19 changed files with 972 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
- 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