From 9780b854b2c985415ef5c1fa2781accf6a54ece5 Mon Sep 17 00:00:00 2001 From: feldjaeger Date: Tue, 24 Mar 2026 20:59:04 +0100 Subject: [PATCH] Add jellyfin_network and wstunnel-client service --- compose.yaml | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index b4f78a7..d7343cf 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,5 +1,27 @@ ---- +networks: + jellyfin_network: + enable_ipv6: false + name: jellyfin_network + 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: image: jellyfin/jellyfin:latest container_name: jellyfin @@ -20,6 +42,8 @@ services: - 7359:7359/udp #optional - 1900:1900/udp #optional restart: unless-stopped + networks: + - jellyfin_network volumes: data: name: data