Files
dropshell-templates/openclaw/docker-compose.yml
j 23ec097b39
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 14s
Add openclaw dropshell template for personal AI assistant
2026-03-11 20:48:14 +13:00

20 lines
578 B
YAML

services:
openclaw:
image: ${IMAGE_REGISTRY}/${IMAGE_REPO}:${IMAGE_TAG}
container_name: ${CONTAINER_NAME}
restart: unless-stopped
ports:
- "${GATEWAY_PORT}:18789"
volumes:
- ${DATA_PATH}/config:/home/node/.openclaw
- ${DATA_PATH}/workspace:/home/node/workspace
environment:
ANTHROPIC_API_KEY: ${ANTHROPIC_API_KEY}
OPENROUTER_API_KEY: ${OPENROUTER_API_KEY}
healthcheck:
test: ["CMD", "curl", "-sf", "http://localhost:18789/healthz"]
interval: 30s
timeout: 10s
retries: 3
start_period: 60s