Files
routstr-core/compose.yml
T

25 lines
441 B
YAML

version: '3.8'
services:
router:
build: .
volumes:
- .:/app
env_file:
- .env
ports:
- "8000:8000" # ← This line is added
tor:
image: ghcr.io/hundehausen/tor-hidden-service:latest
volumes:
- tor-data:/var/lib/tor
environment:
# Format: HS_<NAME>=<TARGET_HOST>:<TARGET_PORT>:<VIRTUAL_PORT>
- HS_ROUTER=router:8000:80
depends_on:
- router
volumes:
tor-data: