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
15 changes: 15 additions & 0 deletions blueprints/maxio/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: "3.8"

services:
maxio:
image: ghcr.io/coollabsio/maxio:0.2.1
expose:
- 9000
volumes:
- maxio-data:/data
environment:
- MAXIO_ACCESS_KEY=${MAXIO_ACCESS_KEY}
- MAXIO_SECRET_KEY=${MAXIO_SECRET_KEY}
restart: unless-stopped
volumes:
maxio-data:
Comment on lines +3 to +15
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Missing version, restart, and incorrect ports field

The docker-compose file has three violations of the required conventions defined in AGENTS.md:

  1. version: "3.8" is required but is absent.
  2. ports must not be used — use expose instead. Dokploy handles routing, so exposing host ports directly conflicts with its isolation model.
  3. restart: unless-stopped or restart: always is required but is missing. Without it, the container will not recover from crashes or host reboots.

Please update the file to add version: "3.8" at the top, replace the ports section with expose: ["9000"], and add restart: unless-stopped to the maxio service.

Rule Used: AGENTS.md (source)

8 changes: 8 additions & 0 deletions blueprints/maxio/maxio.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions blueprints/maxio/template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[[config.domains]]
serviceName = "maxio"
port = 9000
host = "${domain}"

[config]
env = [
"MAXIO_ACCESS_KEY=${password:20}",
"MAXIO_SECRET_KEY=${password:20}",
]
35 changes: 17 additions & 18 deletions meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -3859,6 +3859,23 @@
"crm"
]
},
{
"id": "maxio",
"name": "MaxIO",
"version": "0.2.1",
"description": "MaxIO is a lightweight, single-binary S3-compatible object storage server written in Rust",
"logo": "maxio.svg",
"links": {
"github": "https://github.com/coollabsio/maxio",
"website": "https://github.com/coollabsio/maxio",
"docs": "https://github.com/coollabsio/maxio/blob/main/README.md"
},
"tags": [
"s3",
"storage",
"object-storage"
]
},
{
"id": "maybe",
"name": "Maybe",
Expand Down Expand Up @@ -5952,24 +5969,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