-
Notifications
You must be signed in to change notification settings - Fork 348
New version #708
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New version #708
Changes from all commits
1e21b7e
758cf1d
47daea9
3e8b431
60796a9
1d70294
2e1fb3b
46dc5b9
ac07aa2
d58cc15
e66cad2
c697f54
b56d2b6
a91730e
3ec51b8
8ec4ad1
7efe222
bba48c0
88bff5f
daae16d
b4ebb8d
0fd2456
3205b67
f569d13
5905579
7834542
f78cc8d
abd316f
aa48af7
0aad2a0
c59fbf0
30ecc96
b7f7c9f
dcc456d
c0ff3ca
f3c1060
9e4da9c
640abda
385906a
eb41d83
6e1aece
a00b179
7c540d1
4c36b7d
0e84b28
b4efed2
a9740da
87ab908
4367e2a
40aa695
efea22e
32da868
be933bd
b23e332
54eccbe
726a8c6
76049e3
37dc848
7528f73
0438165
4757c59
dd8ef5b
e4ffe27
f5552b5
be3c7f2
211c2ae
7b02385
97159bd
9433dce
ee0e6fb
9501d5f
b3e62b4
8b579fb
b8984b9
294421a
2199d1d
7417972
7c2f0d4
1ead7d0
bce7326
51750f2
b2e9174
bc934d8
8c87c2d
8aa23fa
26fcbe3
3395913
ebcaed8
bba7033
c251041
f8952fb
67bba2a
64949ea
1d3fde3
6104321
2690ea1
853b643
c9e2a66
88d26c8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
|
|
||
| ## TODO | ||
| ## Instructions | ||
|
|
||
| We don't have nothing to show here.... |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| # For more details, see: | ||
| # - https://github.com/favonia/cloudflare-ddns | ||
| services: | ||
| cloudflare-ddns: | ||
| image: favonia/cloudflare-ddns:1 | ||
| network_mode: host | ||
| restart: unless-stopped | ||
| user: "1000:1000" | ||
| read_only: true | ||
| cap_drop: [all] | ||
| security_opt: [no-new-privileges:true] | ||
| environment: | ||
| - CLOUDFLARE_API_TOKEN=${CLOUDFLARE_API_TOKEN:?} | ||
| - DOMAINS=${DOMAINS:?} | ||
| - PROXIED=false | ||
| - IP6_PROVIDER=none | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| variables = {} | ||
|
|
||
| [config] | ||
| domains = [] | ||
| mounts = [] | ||
|
|
||
| [config.env] | ||
| CLOUDFLARE_API_TOKEN = "<INSERT YOUR TOKEN>" | ||
| DOMAINS = "example.org,www.example.org,example.io" |
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,86 @@ | ||||||||
| services: | ||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing
Suggested change
Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time! |
||||||||
| openclaw: | ||||||||
| image: "coollabsio/openclaw:2026.2.6" | ||||||||
| environment: | ||||||||
| - AUTH_USERNAME=${AUTH_USERNAME} | ||||||||
| - AUTH_PASSWORD=${AUTH_PASSWORD} | ||||||||
| - OPENCLAW_GATEWAY_TOKEN=${OPENCLAW_GATEWAY_TOKEN} | ||||||||
| - ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY} | ||||||||
| - OPENAI_API_KEY=${OPENAI_API_KEY} | ||||||||
| - OPENROUTER_API_KEY=${OPENROUTER_API_KEY} | ||||||||
| - GEMINI_API_KEY=${GEMINI_API_KEY} | ||||||||
| - XAI_API_KEY=${XAI_API_KEY} | ||||||||
| - GROQ_API_KEY=${GROQ_API_KEY} | ||||||||
| - MISTRAL_API_KEY=${MISTRAL_API_KEY} | ||||||||
| - CEREBRAS_API_KEY=${CEREBRAS_API_KEY} | ||||||||
| - VENICE_API_KEY=${VENICE_API_KEY} | ||||||||
| - MOONSHOT_API_KEY=${MOONSHOT_API_KEY} | ||||||||
| - KIMI_API_KEY=${KIMI_API_KEY} | ||||||||
| - MINIMAX_API_KEY=${MINIMAX_API_KEY} | ||||||||
| - ZAI_API_KEY=${ZAI_API_KEY} | ||||||||
| - AI_GATEWAY_API_KEY=${AI_GATEWAY_API_KEY} | ||||||||
| - OPENCODE_API_KEY=${OPENCODE_API_KEY} | ||||||||
| - SYNTHETIC_API_KEY=${SYNTHETIC_API_KEY} | ||||||||
| - COPILOT_GITHUB_TOKEN=${COPILOT_GITHUB_TOKEN} | ||||||||
| - XIAOMI_API_KEY=${XIAOMI_API_KEY} | ||||||||
| - OPENCLAW_PRIMARY_MODEL=${OPENCLAW_PRIMARY_MODEL} | ||||||||
| - DEEPGRAM_API_KEY=${DEEPGRAM_API_KEY} | ||||||||
| - AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID} | ||||||||
| - AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY} | ||||||||
| - AWS_REGION=${AWS_REGION:-us-east-1} | ||||||||
| - AWS_SESSION_TOKEN=${AWS_SESSION_TOKEN} | ||||||||
| - BEDROCK_PROVIDER_FILTER=${BEDROCK_PROVIDER_FILTER:-anthropic} | ||||||||
| - OLLAMA_BASE_URL=${OLLAMA_BASE_URL} | ||||||||
| - PORT=8080 | ||||||||
| - OPENCLAW_GATEWAY_PORT=18789 | ||||||||
| - OPENCLAW_GATEWAY_BIND=${OPENCLAW_GATEWAY_BIND:-loopback} | ||||||||
| - OPENCLAW_STATE_DIR=/data/.openclaw | ||||||||
| - OPENCLAW_WORKSPACE_DIR=/data/workspace | ||||||||
| - BROWSER_CDP_URL=http://browser:9223 | ||||||||
| - BROWSER_DEFAULT_PROFILE=${BROWSER_DEFAULT_PROFILE:-openclaw} | ||||||||
| - BROWSER_EVALUATE_ENABLED=${BROWSER_EVALUATE_ENABLED:-true} | ||||||||
| - BROWSER_SNAPSHOT_MODE=${BROWSER_SNAPSHOT_MODE:-efficient} | ||||||||
| - BROWSER_REMOTE_TIMEOUT_MS=${BROWSER_REMOTE_TIMEOUT_MS:-1500} | ||||||||
| - BROWSER_REMOTE_HANDSHAKE_TIMEOUT_MS=${BROWSER_REMOTE_HANDSHAKE_TIMEOUT_MS:-3000} | ||||||||
| - HOOKS_ENABLED=${HOOKS_ENABLED:-false} | ||||||||
| - HOOKS_PATH=${HOOKS_PATH:-/hooks} | ||||||||
| - MOONSHOT_BASE_URL=${MOONSHOT_BASE_URL:-https://api.moonshot.ai/v1} | ||||||||
| - KIMI_BASE_URL=${KIMI_BASE_URL:-https://api.moonshot.ai/anthropic} | ||||||||
| - TELEGRAM_BOT_TOKEN=$TELEGRAM_BOT_TOKEN | ||||||||
| - DISCORD_BOT_TOKEN=$DISCORD_BOT_TOKEN | ||||||||
| - SLACK_BOT_TOKEN=$SLACK_BOT_TOKEN | ||||||||
| - SLACK_APP_TOKEN=$SLACK_APP_TOKEN | ||||||||
| - WHATSAPP_ENABLED=$WHATSAPP_ENABLED | ||||||||
| - OPENCLAW_DOCKER_APT_PACKAGES=$OPENCLAW_DOCKER_APT_PACKAGES | ||||||||
|
Comment on lines
+49
to
+54
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Environment variables missing Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time! |
||||||||
| volumes: | ||||||||
| - "openclaw-data:/data" | ||||||||
| depends_on: | ||||||||
| browser: | ||||||||
| condition: service_healthy | ||||||||
| healthcheck: | ||||||||
| test: ["CMD", "curl", "-sf", "http://127.0.0.1:8080/healthz"] | ||||||||
| interval: 10s | ||||||||
| timeout: 10s | ||||||||
| retries: 5 | ||||||||
|
Comment on lines
+2
to
+64
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time! |
||||||||
|
|
||||||||
|
|
||||||||
| browser: | ||||||||
| image: "coollabsio/openclaw-browser:latest" | ||||||||
| environment: | ||||||||
| - PUID=1000 | ||||||||
| - PGID=1000 | ||||||||
| - TZ=Etc/UTC | ||||||||
| - CHROME_CLI=--remote-debugging-port=9222 | ||||||||
| volumes: | ||||||||
| - "browser-data:/config" | ||||||||
| shm_size: 2g | ||||||||
| healthcheck: | ||||||||
| test: ["CMD-SHELL", "bash -c ':> /dev/tcp/127.0.0.1/9222' || exit 1"] | ||||||||
| interval: 5s | ||||||||
| timeout: 5s | ||||||||
| retries: 10 | ||||||||
|
Comment on lines
+67
to
+81
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time! |
||||||||
|
|
||||||||
|
|
||||||||
| volumes: | ||||||||
| openclaw-data: | ||||||||
| browser-data: | ||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| [variables] | ||
| gateway_token = "${password:32}" | ||
| auth_username = "dokploy" | ||
| auth_password = "${password:32}" | ||
|
|
||
| [config] | ||
| [[config.domains]] | ||
| serviceName = "openclaw" | ||
| port = 8080 | ||
| host = "${domain}" | ||
|
|
||
| [config.env] | ||
| OPENCLAW_GATEWAY_TOKEN = "${gateway_token}" | ||
| OPENCLAW_GATEWAY_PORT = 18789 | ||
| AUTH_USERNAME="${auth_username}" | ||
| AUTH_PASSWORD="${auth_password}" | ||
|
Comment on lines
+15
to
+16
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Inconsistent spacing - Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time! |
||
| OPENCLAW_BRIDGE_PORT = 18790 | ||
| OPENCLAW_GATEWAY_BIND="lan" | ||
| OPENCLAW_PLUGINS="discord,memory-core" | ||
| # Get here https://openrouter.ai/ | ||
| OPENROUTER_API_KEY="YOUR-API-KEY" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1299,6 +1299,23 @@ | |
| "console" | ||
| ] | ||
| }, | ||
| { | ||
| "id": "cloudflare-ddns", | ||
| "name": "Cloudflare DDNS", | ||
| "version": "1.15.1", | ||
| "description": "A small, feature-rich, and robust Cloudflare DDNS updater.", | ||
| "logo": "cloudflare-ddns.svg", | ||
| "links": { | ||
| "github": "https://github.com/favonia/cloudflare-ddns", | ||
| "website": "https://github.com/favonia/cloudflare-ddns", | ||
| "docs": "https://github.com/favonia/cloudflare-ddns" | ||
| }, | ||
| "tags": [ | ||
| "cloud", | ||
| "networking", | ||
| "ddns" | ||
| ] | ||
| }, | ||
| { | ||
| "id": "cloudflared", | ||
| "name": "Cloudflared", | ||
|
|
@@ -1307,8 +1324,8 @@ | |
| "logo": "cloudflared.svg", | ||
| "links": { | ||
| "github": "https://github.com/cloudflare/cloudflared", | ||
| "website": "https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/", | ||
| "docs": "https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-and-setup/" | ||
| "website": "https://developers.cloudflare.com/cloudflare-one/networks/connectors/cloudflare-tunnel/", | ||
| "docs": "https://developers.cloudflare.com/cloudflare-one/networks/connectors/cloudflare-tunnel/get-started/" | ||
| }, | ||
| "tags": [ | ||
| "cloud", | ||
|
|
@@ -4520,6 +4537,27 @@ | |
| "surrealdb" | ||
| ] | ||
| }, | ||
| { | ||
| "id": "openclaw", | ||
| "name": "Openclaw", | ||
| "version": "2026.1.29", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Version mismatch: |
||
| "description": "WhatsApp gateway CLI with Pi RPC agent - self-hosted AI-powered messaging platform", | ||
| "logo": "openclaw.svg", | ||
| "links": { | ||
| "github": "https://github.com/openclaw/openclaw", | ||
| "website": "https://openclaw.ai/", | ||
| "docs": "https://docs.openclaw.ai/" | ||
| }, | ||
| "tags": [ | ||
| "whatsapp", | ||
| "ai", | ||
| "messaging", | ||
| "chatbot", | ||
| "gateway", | ||
| "self-hosted", | ||
| "automation" | ||
| ] | ||
| }, | ||
| { | ||
| "id": "opengist", | ||
| "name": "OpenGist", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing
version: "3.8"declaration - required by Dokploy template conventions.Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!