mirror of
https://github.com/MarkusMcNugen/docker-qBittorrentvpn
synced 2024-11-14 22:55:11 +00:00
22 lines
439 B
YAML
22 lines
439 B
YAML
|
openvpn:
|
||
|
image: haugene/transmission-openvpn
|
||
|
privileged: true
|
||
|
ports:
|
||
|
- "9091:9091"
|
||
|
volumes:
|
||
|
- /etc/localtime:/etc/localtime:ro
|
||
|
- /your/storage/path/:/data
|
||
|
environment:
|
||
|
OPENVPN_PROVIDER: PIA
|
||
|
OPENVPN_USERNAME: username
|
||
|
OPENVPN_PASSWORD: password
|
||
|
|
||
|
|
||
|
nginx:
|
||
|
image: library/nginx
|
||
|
ports:
|
||
|
- "8080:8080"
|
||
|
volumes:
|
||
|
- /etc/localtime:/etc/localtime:ro
|
||
|
- /path/to/nginx.conf:/etc/nginx/nginx.conf:ro
|