mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-06-15 09:31:51 +02:00
89d6bb8fb9
Auto-relay connect DMs with End Contact severing, signed fleet prekey lookup, OpenClaw private Infonet channel intents, headless relay Tor bootstrap on redeploy, and swarm/DM live verification scripts. Co-authored-by: Cursor <cursoragent@cursor.com>
29 lines
749 B
YAML
29 lines
749 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
|
|
environment:
|
|
# Keep Tor wormhole up across redeploys (no NODE UI on headless relay).
|
|
MESH_INFONET_RELAY_AUTO_WORMHOLE: "true"
|
|
MESH_ARTI_ENABLED: "true"
|
|
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:
|