mirror of
https://github.com/tiennm99/goclaw.git
synced 2026-07-19 14:17:35 +00:00
The generic name "shared" conflicts with other projects on the same host. Use a project-scoped name to avoid collisions.
22 lines
548 B
YAML
22 lines
548 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:
|
|
image: ghcr.io/nextlevelbuilder/goclaw-web:latest
|
|
build:
|
|
context: ./ui/web
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "${GOCLAW_UI_PORT:-3000}:80"
|
|
networks:
|
|
- default
|
|
- goclaw-net
|
|
depends_on:
|
|
- goclaw
|
|
restart: unless-stopped
|