Files
goclaw/docker-compose.selfservice.yml
T
Viet TranandClaude Opus 4.6 f3f4c67b36 Initial commit: GoClaw AI agent gateway
Multi-agent AI gateway with WebSocket RPC, HTTP API, and messaging channel integrations.
Go port of OpenClaw with multi-tenant PostgreSQL, per-user isolation, security hardening,
and production observability.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-22 14:58:07 +07:00

19 lines
532 B
YAML

# Self-service overlay — adds web dashboard UI (nginx + React SPA).
#
# Usage:
# docker compose -f docker-compose.yml -f docker-compose.managed.yml -f docker-compose.selfservice.yml up
# docker compose -f docker-compose.yml -f docker-compose.standalone.yml -f docker-compose.selfservice.yml up
#
# Dashboard: http://localhost:3000
services:
goclaw-ui:
build:
context: ./ui/web
dockerfile: Dockerfile
ports:
- "${GOCLAW_UI_PORT:-3000}:80"
depends_on:
- goclaw
restart: unless-stopped