From 4ad385f7416f62d85f42e5e38d53940024cea198 Mon Sep 17 00:00:00 2001 From: hcastc00 Date: Mon, 16 Feb 2026 12:18:54 +0000 Subject: [PATCH] bump openclaw/openclaw to v2026.2.15 --- dappnode_package.json | 17 +++++++++++++++-- docker-compose.yml | 23 +++++++++++------------ 2 files changed, 26 insertions(+), 14 deletions(-) diff --git a/dappnode_package.json b/dappnode_package.json index 7b89252..28d478b 100644 --- a/dappnode_package.json +++ b/dappnode_package.json @@ -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", @@ -12,7 +12,20 @@ "author": "DAppNode Association ", "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", diff --git a/docker-compose.yml b/docker-compose.yml index 2f4833b..4b572cc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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: @@ -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: {}