Files
Shadowbroker/docker-compose.relay.yml
T
BigBodyCobain b8ac0fb9e7 Harden v0.9.75 wormhole node sync and telemetry panels
Add Tor/onion runtime wiring and faster Infonet node status refresh.

Keep node bootstrap state clearer across Docker and local runtimes.

Use selected aircraft trail history for cumulative tracked-aircraft emissions.
2026-05-06 14:04:16 -06:00

27 lines
579 B
YAML

# Minimal relay-node compose — backend only, no frontend needed.
services:
backend:
build:
context: .
dockerfile: ./backend/Dockerfile
container_name: shadowbroker-relay
ports:
- "0.0.0.0:8000:8000"
env_file: .env
volumes:
- relay_data:/app/data
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/api/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 60s
deploy:
resources:
limits:
memory: 2G
volumes:
relay_data: