mirror of
https://github.com/antitree/private-tor-network
synced 2024-12-29 15:21:57 +00:00
84 lines
1.4 KiB
YAML
84 lines
1.4 KiB
YAML
version: '2'
|
|
services:
|
|
da1:
|
|
image: antitree/private-tor
|
|
#restart: always
|
|
expose:
|
|
- "7000"
|
|
- "9030"
|
|
- "54444"
|
|
environment:
|
|
## set your Nickname here (only use letters and numbers)
|
|
#TOR_NICKNAME: DA1
|
|
ROLE: DA
|
|
volumes:
|
|
## Needed to keep track of other nodes
|
|
- ./tor:/tor
|
|
da2:
|
|
image: antitree/private-tor
|
|
#restart: always
|
|
expose:
|
|
- "7000"
|
|
- "9030"
|
|
- "54444"
|
|
environment:
|
|
## set your Nickname here (only use letters and numbers)
|
|
#TOR_NICKNAME: DA1
|
|
ROLE: DA
|
|
volumes:
|
|
## Needed to keep track of other nodes
|
|
- ./tor:/tor
|
|
da3:
|
|
image: antitree/private-tor
|
|
#restart: always
|
|
expose:
|
|
- "7000"
|
|
- "9030"
|
|
- "54444"
|
|
environment:
|
|
## set your Nickname here (only use letters and numbers)
|
|
#TOR_NICKNAME: DA1
|
|
ROLE: DA
|
|
volumes:
|
|
## Needed to keep track of other nodes
|
|
- ./tor:/tor
|
|
relay:
|
|
image: antitree/private-tor
|
|
expose:
|
|
- "7000"
|
|
- "9030"
|
|
environment:
|
|
ROLE: RELAY
|
|
volumes:
|
|
- ./tor:/tor
|
|
depends_on:
|
|
- da1
|
|
- da2
|
|
- da3
|
|
exit:
|
|
image: antitree/private-tor
|
|
expose:
|
|
- "7000"
|
|
- "9030"
|
|
environment:
|
|
ROLE: EXIT
|
|
volumes:
|
|
- ./tor:/tor
|
|
depends_on:
|
|
- da1
|
|
- da2
|
|
- da3
|
|
client:
|
|
image: antitree/private-tor
|
|
ports:
|
|
- "9050:9050"
|
|
volumes:
|
|
- ./tor:/tor
|
|
environment:
|
|
ROLE: CLIENT
|
|
depends_on:
|
|
- da1
|
|
- da2
|
|
- da3
|
|
|