Guest User

Untitled

a guest
Feb 15th, 2026
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. services:
  2. jellyfin:
  3. image: lscr.io/linuxserver/jellyfin:latest
  4. container_name: jellyfin
  5. volumes:
  6. - /docker/jellyfin/config:/config
  7. - /docker/jellyfin/cache:/cache
  8. - /mnt/hermes/media:/data/media
  9. deploy:
  10. resources:
  11. reservations:
  12. devices:
  13. - driver: nvidia
  14. count: all
  15. capabilities:
  16. - gpu
  17. environment:
  18. - PUID=1001
  19. - PGID=988
  20. - TZ='America/New_York'
  21. - UMASK=022
  22. - JELLYFIN_PublishedServerUrl=192.168.0.44
  23. - NVIDIA_VISIBLE_DEVICES=all
  24. - NVIDIA_DRIVER_CAPABILITIES=all
  25. ports:
  26. - 8096:8096/tcp
  27. - 8920:8920/tcp
  28. - 7359:7359/udp
  29. security_opt:
  30. - no-new-privileges:true
  31. restart: always
Advertisement
Add Comment
Please, Sign In to add comment