[GH-ISSUE #60] [Bug]: Maybe Finance Template is bug with the lastest version "0.4.3" #16362

Closed
opened 2026-07-16 04:56:30 -05:00 by GiteaMirror · 1 comment
Owner

Originally created by @louanfontenele on GitHub (Apr 3, 2025).
Original GitHub issue: https://github.com/Dokploy/templates/issues/60

docker-composer.yml

services:
  app:
    image: ghcr.io/maybe-finance/maybe:latest
    restart: unless-stopped
    volumes:
      - ../files/uploads:/app/uploads
    environment:
      DATABASE_URL: postgresql://maybe:maybe@db:5432/maybe
      SECRET_KEY_BASE: ${SECRET_KEY_BASE}
      SELF_HOSTED: true
      SYNTH_API_KEY: ${SYNTH_API_KEY}
      RAILS_FORCE_SSL: "false"
      RAILS_ASSUME_SSL: "false"
      GOOD_JOB_EXECUTION_MODE: async
    depends_on:
      db:
        condition: service_healthy

  db:
    image: postgres:16
    restart: always
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
      interval: 5s
      timeout: 5s
      retries: 5

    volumes:
      - db-data:/var/lib/postgresql/data
    environment:
      POSTGRES_DB: maybe
      POSTGRES_USER: maybe
      POSTGRES_PASSWORD: maybe

volumes:
  db-data:

Logs:
maybe-finance-maybe-hsfldq-app-1-20250403_175134.log.txt

maybe-finance-maybe-hsfldq-db-1-20250403_175129.log.txt


When I try to do something, the website crashes for a few seconds, and back online again.

Image

Originally created by @louanfontenele on GitHub (Apr 3, 2025). Original GitHub issue: https://github.com/Dokploy/templates/issues/60 docker-composer.yml ```yml services: app: image: ghcr.io/maybe-finance/maybe:latest restart: unless-stopped volumes: - ../files/uploads:/app/uploads environment: DATABASE_URL: postgresql://maybe:maybe@db:5432/maybe SECRET_KEY_BASE: ${SECRET_KEY_BASE} SELF_HOSTED: true SYNTH_API_KEY: ${SYNTH_API_KEY} RAILS_FORCE_SSL: "false" RAILS_ASSUME_SSL: "false" GOOD_JOB_EXECUTION_MODE: async depends_on: db: condition: service_healthy db: image: postgres:16 restart: always healthcheck: test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"] interval: 5s timeout: 5s retries: 5 volumes: - db-data:/var/lib/postgresql/data environment: POSTGRES_DB: maybe POSTGRES_USER: maybe POSTGRES_PASSWORD: maybe volumes: db-data: ``` --- Logs: [maybe-finance-maybe-hsfldq-app-1-20250403_175134.log.txt](https://github.com/user-attachments/files/19592236/maybe-finance-maybe-hsfldq-app-1-20250403_175134.log.txt) [maybe-finance-maybe-hsfldq-db-1-20250403_175129.log.txt](https://github.com/user-attachments/files/19592235/maybe-finance-maybe-hsfldq-db-1-20250403_175129.log.txt) --- When I try to do something, the website crashes for a few seconds, and back online again. ![Image](https://github.com/user-attachments/assets/c8afd598-2612-4330-b652-e1b22a32a7d8)
GiteaMirror added the bug label 2026-07-16 04:56:30 -05:00
Author
Owner

@Siumauricio commented on GitHub (Jul 14, 2026):

The template pins a known-good image by SHA rather than :latest, and upstream Maybe has since been archived (the project shut down), so no version bump is coming. If the pinned image misbehaves for you on current Dokploy, please reopen with logs.

<!-- gh-comment-id:4971735943 --> @Siumauricio commented on GitHub (Jul 14, 2026): The template pins a known-good image by SHA rather than :latest, and upstream Maybe has since been archived (the project shut down), so no version bump is coming. If the pinned image misbehaves for you on current Dokploy, please reopen with logs.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/templates#16362