17 lines
318 B
YAML
17 lines
318 B
YAML
---
|
|
services:
|
|
# Dein Tor Proxy
|
|
tor:
|
|
image: custom-tor-proxy:latest
|
|
build: .
|
|
container_name: tor-proxy
|
|
restart: always
|
|
ports:
|
|
- "9050:9050"
|
|
healthcheck:
|
|
test: ["CMD", "nc", "-z", "localhost", "9050"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
start_period: 15s
|