mirror of
https://github.com/tiennm99/goclaw.git
synced 2026-06-09 20:13:24 +00:00
6895e369f6
- Remove standalone mode code: file-based stores, standalone gateway, heartbeat service, SQLite memory, standalone docker-compose - Rename docker-compose.managed.yml → docker-compose.postgres.yml - Clean up ~130 Go comments referencing "managed mode" qualifier - Simplify docker-compose.yml env vars (providers/channels via web UI) - Update .env.example to essential vars only (token + encryption key) - Add setup wizard UI (provider → agent → channel bootstrap flow) - Add logs.tail WebSocket handler for live log streaming - Add cursor-pointer to interactive UI components - Clean up config page (remove standalone-only sections) - Update README and docs for managed-only architecture
25 lines
697 B
YAML
25 lines
697 B
YAML
# Tailscale overlay — rebuilds with tsnet support for secure remote access.
|
|
#
|
|
# Usage:
|
|
# docker compose -f docker-compose.yml -f docker-compose.postgres.yml -f docker-compose.tailscale.yml up
|
|
#
|
|
# Required:
|
|
# GOCLAW_TSNET_AUTH_KEY — Tailscale auth key (from https://login.tailscale.com/admin/settings/keys)
|
|
#
|
|
# Optional:
|
|
# GOCLAW_TSNET_HOSTNAME — Tailscale device name (default: goclaw-gateway)
|
|
|
|
services:
|
|
goclaw:
|
|
build:
|
|
args:
|
|
ENABLE_TSNET: "true"
|
|
environment:
|
|
- GOCLAW_TSNET_HOSTNAME=${GOCLAW_TSNET_HOSTNAME:-goclaw-gateway}
|
|
- GOCLAW_TSNET_AUTH_KEY=${GOCLAW_TSNET_AUTH_KEY}
|
|
volumes:
|
|
- tsnet-state:/app/tsnet-state
|
|
|
|
volumes:
|
|
tsnet-state:
|