46d8fecdfa
Replace deploy tasks with teardown tasks that stop containers and remove stack directories. Remove Caddy routes and DNS records, with explicit Route53 deletion for the decommissioned subdomains. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
267 B
YAML
12 lines
267 B
YAML
---
|
|
- name: Stop and remove kanboard stack
|
|
community.docker.docker_compose_v2:
|
|
project_src: /opt/stacks/kanboard
|
|
state: absent
|
|
ignore_errors: true
|
|
|
|
- name: Remove kanboard directory
|
|
ansible.builtin.file:
|
|
path: /opt/stacks/kanboard
|
|
state: absent
|