mirror of
https://github.com/tiennm99/goclaw.git
synced 2026-07-31 08:25:03 +00:00
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>
19 lines
532 B
YAML
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
|