Fadinglionhart

Untitled

Jan 2nd, 2025
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1.  
  2. services:
  3. gluetun:
  4. image: qmcgaw/gluetun
  5. container_name: gluetun
  6. cap_add:
  7. - NET_ADMIN
  8. devices:
  9. - /dev/net/tun:/dev/net/tun
  10. environment:
  11. - VPN_SERVICE_PROVIDER=custom
  12. - VPN_TYPE=wireguard
  13. volumes:
  14. - /home/docker_appdata/zurg_gluetun/vpn_unlimited_wg_new.conf:/gluetun/wireguard/wg0.conf:ro
  15. - /etc/localtime:/etc/localtime:ro
  16. ports:
  17. - 8080:8080
  18. - 6881:6881
  19. - 6881:6881/udp
  20. - 6500:6500
  21. - 9998:9998
  22. restart: always
  23. qbittorrent:
  24. image: lscr.io/linuxserver/qbittorrent:latest
  25. container_name: qbittorrent
  26. network_mode: service:gluetun
  27. depends_on:
  28. - gluetun
  29. environment:
  30. - PUID=1000
  31. - PGID=1000
  32. - TZ=America/Los_Angeles
  33. - WEBUI_PORT=8080
  34. volumes:
  35. - ./qbittorrent:/config
  36. - /mnt/tower/downloads/qbittorrent_downloads:/data/local_media/downloads
  37. - ./incomplete:/data/local_media/local_incomplete
  38. #- /dev/shm/qbittorrent:/mnt/shm
  39. restart: unless-stopped
  40. zurg:
  41. image: ghcr.io/debridmediamanager/zurg-testing:latest
  42. depends_on:
  43. - gluetun
  44. network_mode: service:gluetun
  45. container_name: zurg
  46. restart: always
  47. volumes:
  48. - /home/docker_appdata/zurg_gluetun/plex_update.sh:/app/plex_update.sh
  49. - /home/docker_appdata/zurg_gluetun/config.yml:/app/config.yml
  50. - /home/docker_appdata/zurg_gluetun/zurgdata:/app/data
  51. rclone:
  52. image: rclone/rclone:latest
  53. network_mode: service:gluetun
  54. container_name: rclone
  55. restart: always
  56. depends_on:
  57. - gluetun
  58. environment:
  59. TZ: America/Los_Angeles
  60. PUID: 1000
  61. PGID: 1000
  62. volumes:
  63. - /mnt/zurg:/data:rshared # CHANGE /mnt/zurg WITH YOUR PREFERRED MOUNT PATH
  64. - /home/docker_appdata/zurg_gluetun/rclone.conf:/config/rclone/rclone.conf
  65. cap_add:
  66. - SYS_ADMIN
  67. security_opt:
  68. - apparmor:unconfined
  69. devices:
  70. - /dev/fuse:/dev/fuse:rwm
  71. command: "mount zurg: /data --allow-other --allow-non-empty --dir-cache-time 10s
  72. --vfs-cache-max-age 10m --vfs-cache-max-size 10G --vfs-cache-mode full"
  73. rdtclient:
  74. container_name: rdtclient
  75. network_mode: service:gluetun
  76. environment:
  77. TZ: America/Los_Angeles
  78. volumes:
  79. - /mnt/realdebrid/:/data/downloads
  80. - /home/docker_appdata/zurg_gluetun/rdtclient/:/data/db
  81. - /mnt/zurg/__all__:/mnt/zurg/__all__
  82. image: rogerfar/rdtclient
  83. restart: always
  84. logging:
  85. driver: json-file
  86. options:
  87. max-size: 10m
  88. depends_on:
  89. - zurg
  90. - rclone
  91. - gluetun
  92. networks: {}
  93.  
Add Comment
Please, Sign In to add comment