Add jellyfin_network and wstunnel-client service
This commit is contained in:
parent
1c398739b6
commit
9780b854b2
1 changed files with 25 additions and 1 deletions
26
compose.yaml
26
compose.yaml
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue