feat(perso): initialisation propre de la stack autonome OpenClaw Perso (Ticket perso-2026-09-022)

This commit is contained in:
Gemini
2026-09-06 21:58:46 +01:00
commit 2ab84ce412
4 changed files with 86 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
version: '3.8'
services:
openclaw-perso:
build: .
image: openclaw-perso:latest
container_name: openclaw-perso
restart: unless-stopped
ports:
- "127.0.0.1:8910:18789"
env_file:
- ./.env
volumes:
- ./data:/home/openclaw/.openclaw
environment:
- NODE_ENV=production
- OPENCLAW_GATEWAY_BIND=loopback
- OPENCLAW_CONFIG_PATH=/home/openclaw/.openclaw/openclaw.json
networks:
- n8n
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:18789/"]
interval: 30s
timeout: 10s
retries: 3
start_period: 20s
networks:
n8n:
external: true