-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (29 loc) · 1.11 KB
/
Copy pathdocker-compose.yml
File metadata and controls
30 lines (29 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# OpenGrokBot — VPS / server path
#
# Follows the official OpenClaw Docker layout (https://docs.openclaw.ai/install/docker).
# If this file and the official docs ever disagree, trust the docs and open an issue here.
#
# Quick use:
# cd docker
# docker compose up -d
# docker compose exec openclaw-gateway openclaw onboard # first time
#
# Then from the repo root, install the teammates into the mounted config dir:
# OPENCLAW_CONFIG_DIR=./docker/data/config ../setup.sh
#
# Notes:
# - 2GB+ RAM host recommended (image builds can OOM on 1GB).
# - Control UI: http://127.0.0.1:18789 (bound to localhost — tunnel, don't port-forward).
# - `latest-browser` tag includes Chromium for browsing/computer-use parity with Grok Bot.
services:
openclaw-gateway:
image: ghcr.io/openclaw/openclaw:latest-browser
container_name: openclaw-gateway
restart: unless-stopped
environment:
- OPENCLAW_SANDBOX=1
volumes:
- ${OPENCLAW_CONFIG_DIR:-./data/config}:/home/node/.openclaw
- ${OPENCLAW_WORKSPACE_DIR:-./data/workspace}:/home/node/.openclaw/workspace
ports:
- "127.0.0.1:18789:18789"