Files
goclaw/docker-compose.tailscale.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

25 lines
716 B
YAML

# Tailscale overlay — rebuilds with tsnet support for secure remote access.
#
# Usage (with managed mode):
# docker compose -f docker-compose.yml -f docker-compose.managed.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: