File size: 425 Bytes
5b70894
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
version: "3"
services:
  proton-privoxy:
    image: walt3rl/proton-privoxy:0.4.2-dev
    container_name: proton-privoxy
    environment:
      - PVPN_USERNAME_FILE=/test/creds/username
      - PVPN_PASSWORD_FILE=/test/creds/password
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - .:/test
    ports:
      - 8888:8080
    restart: unless-stopped
    devices:
      - /dev/net/tun
    cap_add:
      - NET_ADMIN