docker-qBittorrentvpn/docker-compose.debug.yml
2021-05-19 08:13:12 -06:00

25 lines
569 B
YAML

version: '3.4'
services:
dockerqbittorrentvpn:
image: dockerqbittorrentvpn
environment:
- VPN_ENABLED=yes
- PIA_PORT_FORWARD=yes
- PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
- NAME_SERVERS=8.8.8.8,8.8.4.4
- LAN_NETWORK=192.168.12.0/24
- TZ=Canada/Mountain
- DEBIAN_FRONTEND=noninteractive
ports:
- "8080:8080"
privileged: true
restart: always
cap_add:
- NET_ADMIN
volumes:
- ~/vpncreds:/config
build:
context: .
dockerfile: ./Dockerfile