mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-05-12 19:52:27 +02:00
b8ac0fb9e7
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.
27 lines
579 B
YAML
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:
|