21dbee4b53
Compose files and configs for postgres, adguard, duckdns, homarr, neo4j, portainer, remotely, and monitoring; RESTORE.md and sync-from-nas script. Sanitize pgAdmin secrets; document homelab-command as separate repo. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
485 B
YAML
17 lines
485 B
YAML
# DuckDNS — dynamisch DNS voor mohome020.duckdns.org
|
|
# Start: cp .env.example .env && docker compose up -d
|
|
|
|
services:
|
|
duckdns:
|
|
image: linuxserver/duckdns:latest
|
|
container_name: duckdns
|
|
restart: unless-stopped
|
|
environment:
|
|
PUID: ${PUID:-1026}
|
|
PGID: ${PGID:-100}
|
|
TZ: ${TZ:-Europe/Brussels}
|
|
SUBDOMAINS: ${DUCKDNS_SUBDOMAINS:?}
|
|
TOKEN: ${DUCKDNS_TOKEN:?}
|
|
UPDATE_IP: ${DUCKDNS_UPDATE_IP:-true}
|
|
INTERVAL: ${DUCKDNS_INTERVAL:-300}
|