-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (39 loc) · 946 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (39 loc) · 946 Bytes
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
31
32
33
34
35
36
37
38
39
services:
gateway:
build:
context: .
dockerfile: Dockerfile
args:
UPSTREAM_VERSION: v2026.2.15
image: gateway.openclaw.public.dappnode.eth:0.1.0
container_name: DAppNodePackage-gateway.openclaw.public.dappnode.eth
restart: unless-stopped
environment:
HOME: /home/node
TERM: xterm-256color
NODE_ENV: production
OPENCLAW_STATE_DIR: /home/node/.openclaw
volumes:
- openclaw_data:/home/node/.openclaw
- openclaw_workspace:/home/node/.openclaw/workspace
security_opt:
- no-new-privileges:true
logging:
driver: json-file
options:
max-size: 10m
max-file: "3"
command:
- node
- dist/index.js
- gateway
- "--bind"
- lan
- "--port"
- "18789"
- "--allow-unconfigured"
- "--token"
- ${GATEWAY_TOKEN:-openclaw}
volumes:
openclaw_data: {}
openclaw_workspace: {}