Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. ---
  2. version: "2"
  3. services:
  4. jellyfin:
  5. image: linuxserver/jellyfin
  6. container_name: jellyfin
  7. environment:
  8. - PUID=1000
  9. - PGID=1000
  10. - TZ=Europe/London
  11. - UMASK_SET=022 #optional
  12. volumes:
  13. - /path/to/library:/config
  14. - path/to/tvseries:/data/tvshows
  15. - /path/to/movies:/data/movies
  16. - /path for transcoding:/transcode #optional
  17. ports:
  18. - 8096:8096
  19. - 8920:8920 #optional
  20. devices:
  21. - /dev/dri:/dev/dri #optional
  22. restart: unless-stopped
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement