[GH-ISSUE #565] Cap.so Template has wrong minio image | Cannot deploy #2282

Closed
opened 2026-04-23 03:18:57 -05:00 by GiteaMirror · 0 comments
Owner

Originally created by @entrptaher on GitHub (Dec 3, 2025).
Original GitHub issue: https://github.com/Dokploy/templates/issues/565

Originally assigned to: @Siumauricio, @Copilot on GitHub.

Template Name

Cap.so

Relevant Logs of the Error

2d35ebdb57d9 Extracting [>                                                  ]  65.54kB/3.802MB
minio Error manifest for bitnami/minio:latest not found: manifest unknown: manifest unknown
ps-mysql  Interrupted
Error response from daemon: manifest for bitnami/minio:latest not found: manifest unknown: manifest unknown
Error: ❌ Docker command failed
Image

Steps to Reproduce the Error

  1. select cap.so from the template list and create the app
  2. click deploy
  3. not deployed because image is wrong

Environment Information

OS: Ubuntu 24.04
Dokploy: 0.25.5 and 0.25.11 (tested on both)
VPS: Hetzner

When does this error occur?

During template deployment

Additional Context

The bitnami/minio:latest image fails to pull because Bitnami discontinued free Docker Hub images in August 2025, making the latest manifest unavailable.

Example of working template:

version: "3.8"
services:
  cap-web:
    image: ghcr.io/capsoftware/cap-web:latest
    restart: unless-stopped
    environment:
      DATABASE_URL: 'mysql://${MYSQL_USER}:${MYSQL_PASSWORD}@ps-mysql:3306/${MYSQL_DATABASE}?ssl={"rejectUnauthorized":false}'
      WEB_URL: "http://${DOMAIN}:3000"
      NEXTAUTH_URL: "http://${DOMAIN}:3000"
      DATABASE_ENCRYPTION_KEY: ${DATABASE_ENCRYPTION_KEY}
      NEXTAUTH_SECRET: ${NEXTAUTH_SECRET}
      CAP_AWS_ACCESS_KEY: ${CAP_AWS_ACCESS_KEY}
      CAP_AWS_SECRET_KEY: ${CAP_AWS_SECRET_KEY}
      CAP_AWS_BUCKET: ${CAP_AWS_BUCKET}
      CAP_AWS_REGION: ${CAP_AWS_REGION}
      S3_PUBLIC_ENDPOINT: "http://${DOMAIN}:3902"
      S3_INTERNAL_ENDPOINT: "http://minio:3902"
    expose:
      - 3000
    depends_on:
      - ps-mysql
      - minio

  ps-mysql:
    image: mysql:8.0
    restart: unless-stopped
    environment:
      MYSQL_DATABASE: ${MYSQL_DATABASE}
      MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
      MYSQL_ROOT_HOST: "%"
    command:
      - --max_connections=1000
      - --default-authentication-plugin=mysql_native_password
    expose:
      - 3306
    volumes:
      - ps-mysql:/var/lib/mysql

  minio:
    image: quay.io/minio/minio:RELEASE.2025-05-24T17-08-30Z
    restart: unless-stopped
    command: server /bitnami/minio/data --address ":3902" --console-address ":3903"
    environment:
      MINIO_ROOT_USER: ${MINIO_ROOT_USER}
      MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
    expose:
      - 3902
      - 3903
    ports:
      - "3902:3902"
      - "3903:3903"
    volumes:
      - minio-data:/bitnami/minio/data
      - minio-certs:/certs
    healthcheck:
      test: ["CMD", "mc", "ready", "local"]
      interval: 30s
      timeout: 20s
      retries: 3

volumes:
  ps-mysql:
    driver: local
  minio-data:
    driver: local
  minio-certs:
    driver: local

Will you send a PR to fix it?

No

Originally created by @entrptaher on GitHub (Dec 3, 2025). Original GitHub issue: https://github.com/Dokploy/templates/issues/565 Originally assigned to: @Siumauricio, @Copilot on GitHub. ### Template Name Cap.so ### Relevant Logs of the Error ``` 2d35ebdb57d9 Extracting [> ] 65.54kB/3.802MB minio Error manifest for bitnami/minio:latest not found: manifest unknown: manifest unknown ps-mysql Interrupted Error response from daemon: manifest for bitnami/minio:latest not found: manifest unknown: manifest unknown Error: ❌ Docker command failed ``` <img width="2196" height="1838" alt="Image" src="https://github.com/user-attachments/assets/415ad319-02e1-445a-929e-4e522633ed5a" /> ### Steps to Reproduce the Error 1. select cap.so from the template list and create the app 2. click deploy 3. not deployed because image is wrong ### Environment Information ```bash OS: Ubuntu 24.04 Dokploy: 0.25.5 and 0.25.11 (tested on both) VPS: Hetzner ``` ### When does this error occur? During template deployment ### Additional Context The bitnami/minio:latest image fails to pull because Bitnami discontinued free Docker Hub images in August 2025, making the latest manifest unavailable. Example of working template: ``` version: "3.8" services: cap-web: image: ghcr.io/capsoftware/cap-web:latest restart: unless-stopped environment: DATABASE_URL: 'mysql://${MYSQL_USER}:${MYSQL_PASSWORD}@ps-mysql:3306/${MYSQL_DATABASE}?ssl={"rejectUnauthorized":false}' WEB_URL: "http://${DOMAIN}:3000" NEXTAUTH_URL: "http://${DOMAIN}:3000" DATABASE_ENCRYPTION_KEY: ${DATABASE_ENCRYPTION_KEY} NEXTAUTH_SECRET: ${NEXTAUTH_SECRET} CAP_AWS_ACCESS_KEY: ${CAP_AWS_ACCESS_KEY} CAP_AWS_SECRET_KEY: ${CAP_AWS_SECRET_KEY} CAP_AWS_BUCKET: ${CAP_AWS_BUCKET} CAP_AWS_REGION: ${CAP_AWS_REGION} S3_PUBLIC_ENDPOINT: "http://${DOMAIN}:3902" S3_INTERNAL_ENDPOINT: "http://minio:3902" expose: - 3000 depends_on: - ps-mysql - minio ps-mysql: image: mysql:8.0 restart: unless-stopped environment: MYSQL_DATABASE: ${MYSQL_DATABASE} MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD} MYSQL_ROOT_HOST: "%" command: - --max_connections=1000 - --default-authentication-plugin=mysql_native_password expose: - 3306 volumes: - ps-mysql:/var/lib/mysql minio: image: quay.io/minio/minio:RELEASE.2025-05-24T17-08-30Z restart: unless-stopped command: server /bitnami/minio/data --address ":3902" --console-address ":3903" environment: MINIO_ROOT_USER: ${MINIO_ROOT_USER} MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD} expose: - 3902 - 3903 ports: - "3902:3902" - "3903:3903" volumes: - minio-data:/bitnami/minio/data - minio-certs:/certs healthcheck: test: ["CMD", "mc", "ready", "local"] interval: 30s timeout: 20s retries: 3 volumes: ps-mysql: driver: local minio-data: driver: local minio-certs: driver: local ``` ### Will you send a PR to fix it? No
GiteaMirror added the bug label 2026-04-23 03:18:57 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/templates#2282