mirror of
https://github.com/cmehay/docker-tor-hidden-service.git
synced 2025-04-23 15:29:12 +00:00
21 lines
388 B
YAML
21 lines
388 B
YAML
# docker-compose.yml example
|
|
# LEGACY CONFIGURATION
|
|
# SEE README FOR INFORMATIONS
|
|
|
|
tor:
|
|
image: goldy/tor-hidden-service:$CUR_TAG
|
|
links:
|
|
- hello
|
|
- world
|
|
environment:
|
|
PORT_MAP: 80 # Map port to detected service
|
|
volumes:
|
|
- ./keys:/var/lib/tor/hidden_service/
|
|
|
|
hello:
|
|
image: tutum/hello-world
|
|
hostname: hello
|
|
|
|
world:
|
|
image: tutum/hello-world
|
|
hostname: world
|