- Unbound ran as `nonrootuser` - Readme updated - auth.conf replaced by `USER` and `PASSWORD` env variables - Removed Nginx section from readme for now - Reworked entrypoint with more checks - Malicious IPs and hostnames building is done at Docker build to gain time at launch - docker-compose updated to reflect changes
21 lines
428 B
YAML
21 lines
428 B
YAML
version: '3'
|
|
services:
|
|
pia:
|
|
build: https://github.com/qdm12/private-internet-access-docker.git
|
|
image: qmcgaw/private-internet-access
|
|
container_name: pia
|
|
cap_add:
|
|
- NET_ADMIN
|
|
devices:
|
|
- /dev/net/tun
|
|
networks:
|
|
- pianet
|
|
environment:
|
|
- USER=
|
|
- PASSWORD=
|
|
- PROTOCOL=udp
|
|
- ENCRYPTION=strong
|
|
- REGION=CA Montreal
|
|
- EXTRA_SUBNETS=
|
|
restart: always
|
|
|