- Region change to "CA Montreal" - Using external data images for malicious hostnames - Added malicious IP addresses blocking with Unbound - Unbound has DNS rebinding protection
24 lines
414 B
YAML
24 lines
414 B
YAML
version: '3'
|
|
services:
|
|
pia:
|
|
build: .
|
|
image: qmcgaw/private-internet-access
|
|
container_name: pia
|
|
cap_add:
|
|
- NET_ADMIN
|
|
devices:
|
|
- /dev/net/tun
|
|
networks:
|
|
- pianet
|
|
volumes:
|
|
- /yourpath/auth.conf:/auth.conf:ro
|
|
environment:
|
|
- PROTOCOL=tcp
|
|
- ENCRYPTION=strong
|
|
- REGION=CA Montreal
|
|
restart: always
|
|
|
|
networks:
|
|
pianet:
|
|
external: true
|
|
|