Guest User

Untitled

a guest
Feb 1st, 2025
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. services:
  2. gluetun:
  3. image: qmcgaw/gluetun
  4. cap_add:
  5. - NET_ADMIN
  6. devices:
  7. - /dev/net/tun:/dev/net/tun
  8. environment:
  9. - VPN_SERVICE_PROVIDER=custom
  10. - VPN_TYPE=wireguard
  11. - WIREGUARD_ENDPOINT_IP=
  12. - WIREGUARD_ENDPOINT_PORT=
  13. - WIREGUARD_PUBLIC_KEY=
  14. - WIREGUARD_PRIVATE_KEY=
  15. - WIREGUARD_PRESHARED_KEY=
  16. - WIREGUARD_ADDRESSES=
  17. sonarr:
  18. container_name: sonarr
  19. image: ghcr.io/hotio/sonarr
  20. ports:
  21. - "8989:8989"
  22. hostname: container-name.internal
  23. environment:
  24. - PUID=568
  25. - PGID=568
  26. - UMASK=002
  27. - TZ=Europe/Berlin
  28. volumes:
  29. - /mnt/Test/Public/Apps/Sonarr:/config
  30. - /mnt/Test/Public/Anime:/data
  31. qbittorrent:
  32. container_name: qbittorrent
  33. environment:
  34. - PUID=568
  35. - PGID=568
  36. - UMASK=002
  37. - TZ=Europe/Berlin
  38. - WEBUI_PORTS=8080/tcp,8080/udp
  39. image: ghcr.io/hotio/qbittorrent
  40. ports:
  41. - '8080:8080'
  42. restart: unless-stopped
  43. volumes:
  44. - /mnt/Test/Public/Apps/Qbittorrent:/config
  45. - /mnt/Test/Public/Anime:/media
Add Comment
Please, Sign In to add comment