infra-iac/teardown.yml

16 lines
364 B
YAML
Raw Normal View History

2024-10-19 19:11:41 +02:00
---
- name: Creating compose from template
hosts: server
gather_facts: false
tasks:
- name: Tearing down Compose file
community.docker.docker_compose_v2:
project_src: /opt/infra
files:
- compose.yml
state: absent
remove_volumes: true
- name: Deleting infra folder contents
ansible.builtin.shell: rm -r /opt/infra/*