Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- networks:
- caddynet:
- name: caddynet
- external: true
- services:
- gluetun:
- image: qmcgaw/gluetun:latest
- container_name: gluetun
- restart: always
- cap_add:
- - NET_ADMIN
- environment:
- - VPN_SERVICE_PROVIDER=protonvpn
- - VPN_TYPE=wireguard
- - WIREGUARD_PRIVATE_KEY=
- - WIREGUARD_ADDRESSES=
- - SERVER_COUNTRIES=United States
- - SERVER_CITIES=
- - PORT_FORWARD_ONLY=on
- - VPN_PORT_FORWARDING=on
- devices:
- - /dev/net/tun:/dev/net/tun
- ports:
- - 16000:8080
- - 6881:6881
- - 6881:6881/udp
- - 16001:16001
- - 16002:8112
- networks:
- - caddynet
- qbittorrent:
- image: lscr.io/linuxserver/qbittorrent:latest
- container_name: qbittorrent
- restart: unless-stopped
- network_mode: "service:gluetun"
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=
- - WEBUI_PORT=16001
- - TORRENTING_PORT=6881
- volumes:
- - /path/to/qbit/config:/config
- - /path/to/qbit/downloads:/downloads
- depends_on:
- gluetun:
- condition: service_healthy
- deluge:
- image: lscr.io/linuxserver/deluge:latest
- container_name: deluge
- restart: unless-stopped
- network_mode: "service:gluetun"
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=
- - DELUGE_LOGLEVEL=error #optional
- volumes:
- - /path/to/deluge/config:/config
- - /path/to/deluge/downloads:/downloads
- depends_on:
- gluetun:
- condition: service_healthy
Add Comment
Please, Sign In to add comment