Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "openclaw.public.dappnode.eth",
"version": "0.1.0",
"upstreamVersion": "2026.2.1",
"upstreamVersion": "v2026.2.15",
"upstreamRepo": "openclaw/openclaw",
"upstreamArg": "UPSTREAM_VERSION",
"shortDescription": "Personal AI assistant gateway with multi-LLM support",
Expand All @@ -12,7 +12,20 @@
"author": "DAppNode Association <admin@dappnode.io>",
"license": "Apache-2.0",
"categories": ["Developer tools", "Communications"],
"keywords": ["ai", "llm", "chatgpt", "claude", "openai", "anthropic", "agent", "gateway", "self-hosted", "telegram", "discord", "whatsapp"],
"keywords": [
"ai",
"llm",
"chatgpt",
"claude",
"openai",
"anthropic",
"agent",
"gateway",
"self-hosted",
"telegram",
"discord",
"whatsapp"
],
"links": {
"homepage": "https://openclaw.ai",
"ui": "http://gateway.openclaw.public.dappnode:18789",
Expand Down
23 changes: 11 additions & 12 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ services:
context: .
dockerfile: Dockerfile
args:
UPSTREAM_VERSION: "latest"
image: "gateway.openclaw.public.dappnode.eth:0.1.0"
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:
Expand All @@ -14,27 +14,26 @@ services:
NODE_ENV: production
OPENCLAW_STATE_DIR: /home/node/.openclaw
volumes:
- "openclaw_data:/home/node/.openclaw"
- "openclaw_workspace:/home/node/.openclaw/workspace"
- openclaw_data:/home/node/.openclaw
- openclaw_workspace:/home/node/.openclaw/workspace
security_opt:
- no-new-privileges:true
logging:
driver: "json-file"
driver: json-file
options:
max-size: "10m"
max-size: 10m
max-file: "3"
command:
- "node"
- "dist/index.js"
- "gateway"
- node
- dist/index.js
- gateway
- "--bind"
- "lan"
- lan
- "--port"
- "18789"
- "--allow-unconfigured"
- "--token"
- "${GATEWAY_TOKEN:-openclaw}"

- ${GATEWAY_TOKEN:-openclaw}
volumes:
openclaw_data: {}
openclaw_workspace: {}