depends on statements & typo fix

This commit is contained in:
tijsg
2025-05-04 22:20:54 +02:00
parent 3051db4ae7
commit d3a4e72f61

View File

@@ -133,12 +133,14 @@ services:
image: linuxserver/duckdns:latest
container_name: duckdns
network_mode: "service:gluetun" # Route through gluetun
depends_on:
- gluetun
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- SUBDOMAINS=ujly # Replace with your DuckDNS subdomain(s)
- TOKEN={DUCKDNS_TOKEN} # Replace with your DuckDNS token
- TOKEN=${DUCKDNS_TOKEN} # Replace with your DuckDNS token
restart: unless-stopped
############################
@@ -148,6 +150,8 @@ services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
depends_on:
- gluetun
environment:
- PUID=1000
- PGID=1000