--- # https://hub.docker.com/r/linuxserver/jellyfin services: jellyfin: image: lscr.io/linuxserver/jellyfin:latest container_name: jellyfin environment: - PUID=1000 - PGID=1000 - TZ=Etc/UTC volumes: - //DockerComposeData/jellyfin/config:/config - //Media:/data/media # <---- This is the path to your media shared folder. ports: - 8096:8096 # <---- Port to access web interface - 8920:8920 #optional - 7359:7359/udp #optional - 1900:1900/udp #optional restart: unless-stopped