DockerComposeCollection

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

docker-compose.yml (503B)


      1 ---
      2 services:
      3   jellyfin:
      4     image: lscr.io/linuxserver/jellyfin:latest
      5     container_name: jellyfin
      6     environment:
      7       - PUID=1000
      8       - PGID=1000
      9       - TZ=Etc/UTC
     10       - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
     11     volumes:
     12       - /path/to/library:/config
     13       - /path/to/tvseries:/data/tvshows
     14       - /path/to/movies:/data/movies
     15     ports:
     16       - 8096:8096
     17       - 8920:8920 #optional
     18       - 7359:7359/udp #optional
     19       - 1900:1900/udp #optional
     20     restart: unless-stopped