Tots els compose

This commit is contained in:
Guillem Hernandez Sola
2026-06-30 13:12:37 +02:00
parent bebb2969f8
commit f1fe15d1b5
35 changed files with 2075 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
# /opt/stacks/ddns/docker-compose.yml
services:
ddns-go:
container_name: ddns-go
image: jeessy/ddns-go:latest
restart: unless-stopped
ports:
- "9876:9876" # UI web (només local → via Nginx)
environment:
TZ: Europe/Madrid
volumes:
- ddns_data:/root # Persisteix la configuració
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:9876"]
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
networks:
- shared_net
volumes:
ddns_data:
networks:
shared_net:
external: true
name: shared_net