2024-05-01, 11:10 AM 
(This post was last modified: 2024-05-01, 11:16 AM by Duvel. Edited 3 times in total.)
		
	
	
		Nope.
It just run in docker with no network defined on the container so its the default Bridge mode.
It ran on server 192.168.2.4:8097 (changed the port because the 8096 is running the real LIVE jellyfin 10 8 13 ), and Authentik/Ldap runs on 192.168.2.10 and there's no firewall in between (no ufw or anything).
	
	  
	
	
It just run in docker with no network defined on the container so its the default Bridge mode.
It ran on server 192.168.2.4:8097 (changed the port because the 8096 is running the real LIVE jellyfin 10 8 13 ), and Authentik/Ldap runs on 192.168.2.10 and there's no firewall in between (no ufw or anything).
Code:
version: '3'
services:
  jellyfin:
    image: jellyfin/jellyfin:unstable 
    container_name: jellyfin_test
    ports:
      - 8097:8096 
    user: 115:121 
    restart: 'unless-stopped'
    environment:
      - JELLYFIN_CACHE_DIR=/var/cache/jellyfin
      - JELLYFIN_CONFIG_DIR=/etc/jellyfin
      - JELLYFIN_DATA_DIR=/var/lib/jellyfin 
      - JELLYFIN_LOG_DIR=/var/log/jellyfin
      - TZ=Europe/Brussels
    volumes:
      - /opt/jellyfin_test/config:/etc/jellyfin
      - /opt/jellyfin_test/cache:/var/cache/jellyfin
      - /opt/jellyfin_test/lib:/var/lib/jellyfin
      - /var/log/jellyfin_test:/var/log/jellyfin
      - /media/plex/nanards:/media/plex/nanards
