Files
vps/ansible/playbooks/compose-reconcile.yml
T

13 lines
429 B
YAML
Raw Normal View History

2026-08-03 16:01:35 +08:00
---
# Intentional, narrowly scoped Compose reconciliation. This never changes
# compose files, images, secrets, DNS, or databases. It is gated because a
# container recreate can briefly interrupt a public service.
- name: Reconcile explicitly selected Docker Compose services
hosts: docker_hosts
become: true
gather_facts: false
serial: 1
roles:
- role: compose_reconcile
tags: [compose, reconcile, mutating]