Guest User

Untitled

a guest
Aug 3rd, 2026
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. services:
  2. gluetun:
  3. image: qmcgaw/gluetun
  4. container_name: gluetun
  5. hostname: gluetun
  6. cap_add:
  7. - NET_ADMIN
  8. devices:
  9. - /dev/net/tun:/dev/net/tun
  10. ports:
  11. - 6881:6881
  12. - 6881:6881/udp
  13. - 8085:8085 #qbittorrent
  14. - 8989:8989 #sonarr
  15. - 8990:8989 #sonarr-anime
  16. - 9696:9696 #Prowlarr
  17. - 7878:7878 #Radarr
  18. - 8686:8686 #Lidarr
  19. - 5055:5055 #Overseer
  20. - 4545:4545 #Requestrr
  21. # - Add all other ports required by the different apps here
  22. sonarr:
  23. image: lscr.io/linuxserver/sonarr:latest
  24. container_name: sonarr
  25. network_mode: service:gluetun
  26. environment:
  27. - PUID=1026
  28. - PGID=100
  29. - TZ=America/Denver
  30. volumes:
  31. - /volume1/docker/arr-stack/sonarr/config:/config
  32. - /volume1/data/media/tv/TV Shows:/TV Shows
  33. depends_on:
  34. gluetun:
  35. condition: service_healthy
  36. restart: unless-stopped
  37. sonarr-anime:
  38. image: lscr.io/linuxserver/sonarr:latest
  39. container_name: sonarr-anime
  40. network_mode: service:gluetun
  41. environment:
  42. - PUID=1026
  43. - PGID=100
  44. - TZ=America/Denver
  45. volumes:
  46. - /volume1/docker/arr-stack/sonarr-anime/config:/config
  47. - /volume1/data/media/tv/Japanese Anime Shows:/Japanese Anime Shows
  48. - /volume1/data/media/tv/Anime Shows:/Anime Shows
  49. depends_on:
  50. gluetun:
  51. condition: service_healthy
  52. restart: unless-stopped
Add Comment
Please, Sign In to add comment