Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- services:
- gluetun:
- image: qmcgaw/gluetun
- container_name: gluetun
- cap_add:
- - NET_ADMIN
- devices:
- - /dev/net/tun:/dev/net/tun
- environment:
- - VPN_SERVICE_PROVIDER=custom
- - VPN_TYPE=wireguard
- volumes:
- - /home/docker_appdata/zurg_gluetun/vpn_unlimited_wg_new.conf:/gluetun/wireguard/wg0.conf:ro
- - /etc/localtime:/etc/localtime:ro
- ports:
- - 8080:8080
- - 6881:6881
- - 6881:6881/udp
- - 6500:6500
- - 9998:9998
- restart: always
- qbittorrent:
- image: lscr.io/linuxserver/qbittorrent:latest
- container_name: qbittorrent
- network_mode: service:gluetun
- depends_on:
- - gluetun
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=America/Los_Angeles
- - WEBUI_PORT=8080
- volumes:
- - ./qbittorrent:/config
- - /mnt/tower/downloads/qbittorrent_downloads:/data/local_media/downloads
- - ./incomplete:/data/local_media/local_incomplete
- #- /dev/shm/qbittorrent:/mnt/shm
- restart: unless-stopped
- zurg:
- image: ghcr.io/debridmediamanager/zurg-testing:latest
- depends_on:
- - gluetun
- network_mode: service:gluetun
- container_name: zurg
- restart: always
- volumes:
- - /home/docker_appdata/zurg_gluetun/plex_update.sh:/app/plex_update.sh
- - /home/docker_appdata/zurg_gluetun/config.yml:/app/config.yml
- - /home/docker_appdata/zurg_gluetun/zurgdata:/app/data
- rclone:
- image: rclone/rclone:latest
- network_mode: service:gluetun
- container_name: rclone
- restart: always
- depends_on:
- - gluetun
- environment:
- TZ: America/Los_Angeles
- PUID: 1000
- PGID: 1000
- volumes:
- - /mnt/zurg:/data:rshared # CHANGE /mnt/zurg WITH YOUR PREFERRED MOUNT PATH
- - /home/docker_appdata/zurg_gluetun/rclone.conf:/config/rclone/rclone.conf
- cap_add:
- - SYS_ADMIN
- security_opt:
- - apparmor:unconfined
- devices:
- - /dev/fuse:/dev/fuse:rwm
- command: "mount zurg: /data --allow-other --allow-non-empty --dir-cache-time 10s
- --vfs-cache-max-age 10m --vfs-cache-max-size 10G --vfs-cache-mode full"
- rdtclient:
- container_name: rdtclient
- network_mode: service:gluetun
- environment:
- TZ: America/Los_Angeles
- volumes:
- - /mnt/realdebrid/:/data/downloads
- - /home/docker_appdata/zurg_gluetun/rdtclient/:/data/db
- - /mnt/zurg/__all__:/mnt/zurg/__all__
- image: rogerfar/rdtclient
- restart: always
- logging:
- driver: json-file
- options:
- max-size: 10m
- depends_on:
- - zurg
- - rclone
- - gluetun
- networks: {}
Add Comment
Please, Sign In to add comment