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
30 changes: 30 additions & 0 deletions blueprints/zeroclaw/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
version: "3.8"
services:
zeroclaw:
image: ghcr.io/zeroclaw-labs/zeroclaw:latest
restart: unless-stopped
ports:
- 42617
environment:
- ZEROCLAW_gateway__allow_public_bind=true
- ZEROCLAW_gateway__port=42617
- ZEROCLAW_providers__models__openrouter__default__api_key=${API_KEY}
volumes:
- zeroclaw-data:/zeroclaw-data
deploy:
resources:
limits:
cpus: "2"
memory: 512M
reservations:
cpus: "0.5"
memory: 32M
healthcheck:
test: ["CMD", "zeroclaw", "status", "--format=exit-code"]
interval: 60s
timeout: 10s
retries: 3
start_period: 10s

volumes:
zeroclaw-data: {}
Binary file added blueprints/zeroclaw/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions blueprints/zeroclaw/template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[variables]
main_domain = "${domain}"
api_key = ""

[config]
[[config.domains]]
serviceName = "zeroclaw"
port = 42617
host = "${main_domain}"

[[config.env]]
ZEROCLAW_providers__models__openrouter__default__api_key = "${api_key}"
19 changes: 19 additions & 0 deletions meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -6761,6 +6761,25 @@
"alerting"
]
},
{
"id": "zeroclaw",
"name": "ZeroClaw",
"version": "latest",
"description": "Fast, small, and fully autonomous AI personal assistant infrastructure. Self-hosted AI agent gateway with multi-provider LLM support.",
"logo": "logo.png",
"links": {
"github": "https://github.com/zeroclaw-labs/zeroclaw",
"website": "https://zeroclaw.com",
"docs": "https://github.com/zeroclaw-labs/zeroclaw"
},
"tags": [
"ai",
"agent",
"llm",
"automation",
"self-hosted"
]
},
{
"id": "zipline",
"name": "Zipline",
Expand Down
Loading