| 12345678910111213141516171819 |
- version: '3.8'
- services:
- openclaw:
- image: jianboy/openclaw:latest
- container_name: openclaw-prod
- restart: unless-stopped
- ports:
- - "18789:18789"
- env_file:
- - ./.env
- environment:
- TZ: Asia/Shanghai
- HOME: /root
- TERM: xterm-256color
- volumes:
- - ./openclaw-data:/root
- - ./openclaw-logs:/tmp/openclaw
- command: ["node", "dist/index.js", "gateway", "--port", "18789"]
-
|