mirror of
https://github.com/MarkusMcNugen/docker-qBittorrentvpn
synced 2024-11-14 22:55:11 +00:00
24 lines
537 B
YAML
24 lines
537 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=MST
|
||
|
- DEBIAN_FRONTEND=noninteractive
|
||
|
ports:
|
||
|
- "8080:8080"
|
||
|
privileged: true
|
||
|
cap_add:
|
||
|
- NET_ADMIN
|
||
|
volumes:
|
||
|
- ~/vpncreds:/config
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: ./Dockerfile
|