Compare commits
No commits in common. "436bb456d4c149474f5d6e1451b6c71c43b0230a" and "6c2ed96956e83460c681ced95873918351c7cb42" have entirely different histories.
436bb456d4
...
6c2ed96956
|
@ -1,5 +1,3 @@
|
||||||
DATA_PATH=./data
|
|
||||||
|
|
||||||
# Set required variables
|
# Set required variables
|
||||||
OR_PORT=443
|
OR_PORT=443
|
||||||
PT_PORT=444
|
PT_PORT=444
|
||||||
|
|
2
tor-obfs4-bridge/data/.gitignore
vendored
2
tor-obfs4-bridge/data/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
/*
|
|
||||||
!/.gitignore
|
|
|
@ -19,8 +19,12 @@ services:
|
||||||
- NICKNAME=${NICKNAME:-DockerObfs4Bridge}
|
- NICKNAME=${NICKNAME:-DockerObfs4Bridge}
|
||||||
env_file: .env
|
env_file: .env
|
||||||
volumes:
|
volumes:
|
||||||
- "${DATA_PATH:-./data}:/var/lib/tor"
|
- data:/var/lib/tor
|
||||||
ports:
|
ports:
|
||||||
- "${OR_PORT}:${OR_PORT}/tcp"
|
- ${OR_PORT}:${OR_PORT}
|
||||||
- "${PT_PORT}:${PT_PORT}/tcp"
|
- ${PT_PORT}:${PT_PORT}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
data:
|
||||||
|
name: tor-obfs4-bridge-datadir-${OR_PORT}-${PT_PORT}
|
Loading…
Reference in a new issue