mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-06-24 23:10:06 +02:00
d48a0cdace
Seed relay nodes should track CI-published backend images instead of local builds that fail without full monorepo context. Co-authored-by: Cursor <cursoragent@cursor.com>
25 lines
575 B
YAML
25 lines
575 B
YAML
# Minimal relay-node compose — backend only, no frontend needed.
|
|
services:
|
|
backend:
|
|
image: ghcr.io/bigbodycobain/shadowbroker-backend:latest
|
|
container_name: shadowbroker-relay
|
|
ports:
|
|
- "127.0.0.1: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:
|