From 8f2c9cc8082312ae1b146628748781d909a0c080 Mon Sep 17 00:00:00 2001 From: cbeinhart Date: Wed, 29 Apr 2026 16:38:41 +0000 Subject: [PATCH] Add openclaw/docker-compose.yml --- openclaw/docker-compose.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 openclaw/docker-compose.yml diff --git a/openclaw/docker-compose.yml b/openclaw/docker-compose.yml new file mode 100644 index 0000000..30c5cfb --- /dev/null +++ b/openclaw/docker-compose.yml @@ -0,0 +1,18 @@ +services: + openclaw: + image: ghcr.io/openclaw/openclaw:latest + container_name: openclaw-gateway + restart: unless-stopped + ports: + - "18789:18789" # Web UI + volumes: + - /app/data/openclaw:/root/.openclaw # Persistent config/memory + environment: + - OPENCLAW_MODE=lan + - OPENCLAW_BIND=0.0.0.0 + networks: + - vlan30_net + +networks: + vlan30_net: + external: true # Join your existing services network \ No newline at end of file