Skip to content
Closed
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
Binary file added blueprints/construct/construct.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions blueprints/construct/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: "3.8"
services:
construct:
image: ghcr.io/KumihoIO/construct-os:2026.4.24-beta.52
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Mixed-case image reference

GHCR normalizes registry paths to lowercase; ghcr.io/KumihoIO/construct-os should use all-lowercase to avoid potential resolution issues on stricter Docker runtimes or registries.

Suggested change
image: ghcr.io/KumihoIO/construct-os:2026.4.24-beta.52
image: ghcr.io/kumihoio/construct-os:2026.4.24-beta.52

restart: unless-stopped
environment:
- API_KEY=${API_KEY}
- PROVIDER=${PROVIDER:-openrouter}
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Unused shell-default syntax

${PROVIDER:-openrouter} is shell-expansion syntax. In a Dokploy-managed Compose deployment the host shell may not expand this, so the literal string could be passed to the container instead of openrouter. template.toml already hardcodes PROVIDER=openrouter, so it is safer to match that here.

- CONSTRUCT_ALLOW_PUBLIC_BIND=true
- CONSTRUCT_GATEWAY_PORT=42617
volumes:
- construct-data:/construct-data
expose:
- 42617
volumes:
construct-data: {}
16 changes: 16 additions & 0 deletions blueprints/construct/template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[variables]
main_domain = "${domain}"
api_key = "${password:64}"
Comment on lines +1 to +3
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 PROVIDER not exposed as a configurable variable

PROVIDER is hardcoded to openrouter in the template env, so users who want a different LLM provider (e.g. OpenAI, Anthropic) have no way to override it without editing the compose file directly. Consider adding it as a template variable with openrouter as the default, then referencing it in the env array — consistent with how api_key is handled.


[config]
env = [
"API_KEY=${api_key}",
"PROVIDER=openrouter",
"CONSTRUCT_ALLOW_PUBLIC_BIND=true",
"CONSTRUCT_GATEWAY_PORT=42617"
]

[[config.domains]]
serviceName = "construct"
port = 42617
host = "${main_domain}"
34 changes: 16 additions & 18 deletions meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -1541,6 +1541,22 @@
"project-management"
]
},
{
"id": "construct",
"name": "Construct",
"version": "2026.4.24-beta.52",
"description": "Fast, small, and fully autonomous AI personal assistant infrastructure. Deploy anywhere, swap anything. 100% Rust.",
"logo": "construct.png",
"links": {
"github": "https://github.com/KumihoIO/construct-os",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Wrong website URL

https://construct.com/ is the homepage of Construct 3, a commercial game engine by Scirra — completely unrelated to this project. Users who click this link will be taken to the wrong product. Either remove the website field or replace it with the correct URL for KumihoIO/construct-os.

"website": "https://construct.com/",
"docs": "https://github.com/KumihoIO/construct-os#readme"
},
"tags": [
"ai",
"self-hosted"
]
},
{
"id": "convertx",
"name": "ConvertX",
Expand Down Expand Up @@ -5952,24 +5968,6 @@
"media"
]
},
{
"id": "strapi",
"name": "Strapi",
"version": "v5.33.0",
"description": "Open-source headless CMS to build powerful APIs with built-in content management.",
"logo": "strapi.svg",
"links": {
"github": "https://github.com/strapi/strapi",
"discord": "https://discord.com/invite/strapi",
"docs": "https://docs.strapi.io",
"website": "https://strapi.io"
},
"tags": [
"headless",
"cms",
"content-management"
]
},
{
"id": "supabase",
"name": "SupaBase",
Expand Down
Loading