Migration to newer dockge/compose stack

This commit is contained in:
Colin Hebert
2024-09-26 15:59:37 +02:00
parent 1d52e2ac75
commit dfe252e945
104 changed files with 752 additions and 666 deletions

14
dynamic-dns/compose.yaml Normal file
View File

@@ -0,0 +1,14 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json
services:
duckdns:
container_name: duckdns
image: lscr.io/linuxserver/duckdns
environment:
- SUBDOMAINS=${NASCOMPOSE_DUCKDNS_DOMAIN?}
- FILE__TOKEN=/run/secrets/duckdns_token
volumes:
# Secrets
- ./secrets/duckdns_token:/run/secrets/duckdns_token:ro
restart: unless-stopped
networks: {}