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
34 changes: 34 additions & 0 deletions blueprints/openclaw/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
version: "3.8"
services:
openclaw:
image: hari1367709/openclaw:${OPENCLAW_VERSION:-latest}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shouldn't it use a public registry instead if a personal one?

restart: always
environment:
- HOME=/root
- TERM=xterm-256color
- OPENCLAW_GATEWAY_TOKEN=${OPENCLAW_GATEWAY_TOKEN}
- CLAUDE_AI_SESSION_KEY=${CLAUDE_AI_SESSION_KEY}
- CLAUDE_WEB_SESSION_KEY=${CLAUDE_WEB_SESSION_KEY}
- CLAUDE_WEB_COOKIE=${CLAUDE_WEB_COOKIE}
volumes:
- openclaw_config:/root/.openclaw
- openclaw_workspace:/root/.openclaw/workspace
expose:
- 18789
- 18790
init: true
command:
[
"node",
"dist/index.js",
"gateway",
"--allow-unconfigured",
"--bind",
"lan",
"--port",
"18789",
]

volumes:
openclaw_config:
openclaw_workspace:
Binary file added blueprints/openclaw/openclaw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions blueprints/openclaw/template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[variables]
main_domain = "${domain}"
gateway_token = "${password:32}"
openclaw_version = "latest"

[config]
mounts = []

[[config.domains]]
serviceName = "openclaw"
port = 18_789
host = "${main_domain}"
path = ""

[config.env]
OPENCLAW_VERSION = "${openclaw_version}"
OPENCLAW_GATEWAY_TOKEN = "${gateway_token}"
CLAUDE_AI_SESSION_KEY = ""
CLAUDE_WEB_SESSION_KEY = ""
CLAUDE_WEB_COOKIE = ""
19 changes: 19 additions & 0 deletions meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -4541,6 +4541,25 @@
"surrealdb"
]
},
{
"id": "openclaw",
"name": "OpenClaw",
"version": "v26.2.3",
"description": "Your own personal AI assistant. Any OS. Any Platform. OpenClaw is a self-hosted AI assistant that works with WhatsApp, Telegram, Discord, Slack, Signal, and more.",
"logo": "openclaw.png",
"links": {
"github": "https://github.com/openclaw/openclaw",
"website": "https://openclaw.ai",
"docs": "https://docs.openclaw.ai"
},
"tags": [
"ai",
"assistant",
"automation",
"chat",
"self-hosted"
]
},
{
"id": "opengist",
"name": "OpenGist",
Expand Down