Connect jellyfin to npm-network for internal reverse-proxy access

Enables an nginx-proxy-manager proxy host (jellyfin:8096) so it can be
reached by hostname on the LAN instead of IP:port. No public
VIRTUAL_HOST/LETSENCRYPT_HOST since this stays internal-only for now.

Claude-Session: https://claude.ai/code/session_01HZQK6jHmdTpFjFZM8FUnqA
This commit is contained in:
2026-09-06 23:47:41 +00:00
parent bed53e6e06
commit 4d0bcc9042
+8
View File
@@ -21,6 +21,9 @@ services:
- /srv/jellyfin/config:/config - /srv/jellyfin/config:/config
- /srv/jellyfin/cache:/cache - /srv/jellyfin/cache:/cache
- nas_media:/data - nas_media:/data
networks:
- default
- npm-network
deploy: deploy:
resources: resources:
reservations: reservations:
@@ -28,3 +31,8 @@ services:
- driver: nvidia - driver: nvidia
count: all count: all
capabilities: [gpu] capabilities: [gpu]
networks:
default:
npm-network:
external: true