mirror of
https://github.com/tugcantopaloglu/openclaw-dashboard.git
synced 2026-08-14 00:47:52 +00:00
docs: add Docker installation instructions
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
773ee8ca89
commit
6d09a1aa8f
@@ -145,6 +145,38 @@ View logs:
|
||||
journalctl -u agent-dashboard -f
|
||||
```
|
||||
|
||||
### Docker
|
||||
|
||||
```bash
|
||||
# Build
|
||||
docker build -t openclaw-dashboard .
|
||||
|
||||
# Run
|
||||
docker run -d \
|
||||
--name openclaw-dashboard \
|
||||
-p 3001:3001 \
|
||||
-e WORKSPACE_DIR=/app/workspace \
|
||||
-e DASHBOARD_ALLOW_HTTP=true \
|
||||
-v ~/.openclaw:/home/node/.openclaw:ro \
|
||||
-v ~/.openclaw/workspace:/app/workspace \
|
||||
openclaw-dashboard
|
||||
```
|
||||
|
||||
For Docker management page access, pass the Docker socket:
|
||||
|
||||
```bash
|
||||
docker run -d \
|
||||
--name openclaw-dashboard \
|
||||
-p 3001:3001 \
|
||||
-e WORKSPACE_DIR=/app/workspace \
|
||||
-e DASHBOARD_ALLOW_HTTP=true \
|
||||
-v ~/.openclaw:/home/node/.openclaw:ro \
|
||||
-v ~/.openclaw/workspace:/app/workspace \
|
||||
-v /var/run/docker.sock:/var/run/docker.sock:ro \
|
||||
--group-add $(stat -c '%g' /var/run/docker.sock) \
|
||||
openclaw-dashboard
|
||||
```
|
||||
|
||||
### Environment Variables
|
||||
|
||||
| Variable | Description | Default |
|
||||
|
||||
Reference in New Issue
Block a user