mirror of
https://github.com/tiennm99/goclaw.git
synced 2026-07-05 13:06:44 +00:00
1df0e518b6
- Remove obsolete docker-compose.managed.yml reference from COMPOSE - Add docker-compose.postgres.yml to default COMPOSE (required for managed mode) - Add shared external network for cross-stack service discovery - Add make targets: net, dev, migrate - Fix UI healthcheck to use 127.0.0.1 instead of localhost Co-authored-by: Viet Tran <viettranx@gmail.com>
21 lines
490 B
YAML
21 lines
490 B
YAML
# Self-service overlay — adds web dashboard UI (nginx + React SPA).
|
|
#
|
|
# Recommended usage:
|
|
# docker compose -f docker-compose.yml -f docker-compose.postgres.yml -f docker-compose.selfservice.yml up -d --build
|
|
#
|
|
# Dashboard: http://localhost:3000
|
|
|
|
services:
|
|
goclaw-ui:
|
|
build:
|
|
context: ./ui/web
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "${GOCLAW_UI_PORT:-3000}:80"
|
|
networks:
|
|
- default
|
|
- shared
|
|
depends_on:
|
|
- goclaw
|
|
restart: unless-stopped
|