2015-09-22 22:11:04 +02:00
|
|
|
# docker-compose.yml example
|
2019-04-03 16:11:09 +02:00
|
|
|
# LEGACY CONFIGURATION
|
|
|
|
# SEE README FOR INFORMATIONS
|
2015-09-22 22:11:04 +02:00
|
|
|
|
|
|
|
tor:
|
2019-08-03 16:33:21 +02:00
|
|
|
image: goldy/tor-hidden-service:$CUR_TAG
|
2015-09-22 22:11:04 +02:00
|
|
|
links:
|
|
|
|
- hello
|
2016-03-07 03:43:12 +01:00
|
|
|
- world
|
2016-04-11 23:58:48 +02:00
|
|
|
environment:
|
|
|
|
PORT_MAP: 80 # Map port to detected service
|
2016-09-23 03:24:11 +02:00
|
|
|
volumes:
|
|
|
|
- ./keys:/var/lib/tor/hidden_service/
|
2015-09-22 22:11:04 +02:00
|
|
|
|
|
|
|
hello:
|
|
|
|
image: tutum/hello-world
|
2016-03-07 03:43:12 +01:00
|
|
|
hostname: hello
|
|
|
|
|
|
|
|
world:
|
|
|
|
image: tutum/hello-world
|
|
|
|
hostname: world
|