Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- services:
- #----------------------------
- gluetun:
- image: qmcgaw/gluetun
- container_name: gluetun
- # See https://github.com/qdm12/gluetun-wiki/blob/main/setup/connect-a-container-to-gluetun.md#external-container-to-gluetun
- cap_add:
- - NET_ADMIN
- devices:
- - /dev/net/tun:/dev/net/tun
- privileged: true
- network_mode: bridge
- ports:
- # - 7889:7889
- - 8888:8888 # Healtycheck
- #- 6881:6881/udp
- - 8060:8060 # SABnzbd
- - 8085:8085 # empty
- - 8989:8989 # Sonarr
- - 9696:9696 # Prowlarr
- - 8686:8686 # lidarr
- - 7878:7878 # Radarr
- - 8100:8000 # Remote Control VPN
- - 8882:8882 # qbittorent
- - 3000:3000 #firefox
- - 18131:18131 #qbit
- - 37283:37283/tcp
- - 37283:37283/udp
- environment:
- - VPN_SERVICE_PROVIDER=airvpn
- - VPN_TYPE=wireguard
- - WIREGUARD_PRIVATE_KEY= # input private key
- - WIREGUARD_PRESHARED_KEY=. # input preshared key
- - WIREGUARD_ADDRESSES=. # input address
- - WIREGUARD_ENDPOINT_PORT= # Default port for AirVPN
- - SERVER_COUNTRIES=
- - SERVER_CITIES= # input city
- - SERVER_NAMES=
- - FIREWALL_VPN_INPUT_PORTS=# insert forwarded port
- - PUID=1000
- - PGID=1000
- - TZ=Europe/Berlin
- volumes:
- - /srv/arrServs/glueTunVPNServer/config:/config
- restart: always
- #----------------------------
- qbittorrent:
- image: lscr.io/linuxserver/qbittorrent:latest
- container_name: qbittorrent
- network_mode: "service:gluetun"
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=Europe/Berlin
- - WEBUI_PORT=8882
- volumes:
- - /srv/arrServs/qbittorentServer/config/:/config
- - /media/HDD/Torrents/Completed:/Downloads
- depends_on:
- gluetun:
- condition: service_healthy
- restart: unless-stopped
Add Comment
Please, Sign In to add comment