Add openclaw dropshell template for personal AI assistant
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 14s

This commit is contained in:
j
2026-03-11 20:48:14 +13:00
parent 932fe45303
commit 23ec097b39
16 changed files with 555 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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