Guest User

Untitled

a guest
Oct 27th, 2023
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | Software | 0 0
  1. qbittorrent:
  2. image: lscr.io/linuxserver/qbittorrent:latest
  3. container_name: qbittorrent
  4. hostname: qbit
  5. volumes:
  6. - /mnt/data2/docker/qbittorrent/config:/config
  7. - /mnt/data1/downloads/torq:/torq
  8. - /mnt/data1/downloads/torrents:/torrents
  9. - /mnt/storage/downloads/tordone:/tordone
  10. ports:
  11. - 8080:8080
  12. - 48110:48110
  13. environment:
  14. - PUID=1000
  15. - PGID=1000
  16. - WEBUI_PORT=8080
  17. restart: always
  18. nzbget:
  19. image: linuxserver/nzbget
  20. container_name: nzbget
  21. hostname: nzbget
  22. volumes:
  23. - /mnt/data2/docker/nzbget/config:/config
  24. - /mnt/data1/downloads/nzq:/nzbq
  25. - /mnt/storage/downloads/nzbdone:/nzbdone
  26. ports:
  27. - 27020:6789
  28. environment:
  29. - PUID=1000
  30. - PGID=1000
  31. restart: always
  32. jellyfin:
  33. image: lscr.io/linuxserver/jellyfin:latest
  34. container_name: jellyfin
  35. hostname: jellyfin
  36. volumes:
  37. - /mnt/data2/docker/jellyfin/config:/config
  38. - /mnt/data2/docker/jellyfin/cache:/cache
  39. - /mnt/data2/docker/jellyfin/transcode:/transcode
  40. - /mnt/data2/docker/jellyfin/config/web-config.json:/jellyfin/jellyfin-web/config.json
  41. - /mnt/storage/movies:/movies
  42. - /mnt/storage/tv:/tv
  43. ports:
  44. - 8096:8096
  45. environment:
  46. - PUID=1000
  47. - PGID=1000
  48. - JELLYFIN_PublishedServerUrl=10.0.0.11 #optional
  49. - JELLYFIN_FFmpeg__probesize=50000000
  50. - JELLYFIN_FFmpeg__analyzeduration=50000000
  51. # Optional - may be necessary for docker healthcheck to pass if running in host network mode
  52. extra_hosts:
  53. - "host.docker.internal:host-gateway"
  54. restart: always
Add Comment
Please, Sign In to add comment