Add jellyfin_network and wstunnel-client service

This commit is contained in:
feldjaeger 2026-03-24 20:59:04 +01:00 committed by GitHub
parent 1c398739b6
commit 9780b854b2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,27 @@
--- networks:
jellyfin_network:
enable_ipv6: false
name: jellyfin_network
services: services:
wstunnel-client:
image: ghcr.io/erebe/wstunnel:latest
container_name: wstunnel-client # ← für docker logs/ps übersichtlicher
restart: unless-stopped
networks:
- jellyfin_network
command: >
client
-R 'tcp://9112:jellyfin:8096'
wss://home.sascha-lutz.de/wg-tunnel
depends_on: # ← wstunnel startet erst wenn emby läuft
- jellyfin
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
jellyfin: jellyfin:
image: jellyfin/jellyfin:latest image: jellyfin/jellyfin:latest
container_name: jellyfin container_name: jellyfin
@ -20,6 +42,8 @@ services:
- 7359:7359/udp #optional - 7359:7359/udp #optional
- 1900:1900/udp #optional - 1900:1900/udp #optional
restart: unless-stopped restart: unless-stopped
networks:
- jellyfin_network
volumes: volumes:
data: data:
name: data name: data