mirror of
https://github.com/cmehay/docker-tor-hidden-service.git
synced 2025-04-23 23:39:11 +00:00
19 lines
326 B
YAML
19 lines
326 B
YAML
# docker-compose.yml example
|
|
|
|
tor:
|
|
image: goldy/tor-hidden-service
|
|
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
|