mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
Tdarr, Grocy, Dashy, Traefik, Fider, Twenty CRM, Outline, Chatwoot, ComfyUI, Picard, VoidAuth, Tinyauth, Tugtainer, Sencho, Authelia, Mail Archiver, ITFlow, Notifuse, Maybe Finance, DumbBudget, Silverpeas, Portus, Obsidian — all as _dev stacks following repo conventions. Harbor and Exportify moved to 'Apps That Will Not be in the Repo' (installer-generated compose / no published image). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
69 lines
1.8 KiB
YAML
69 lines
1.8 KiB
YAML
services:
|
|
maybe:
|
|
image: ${MAYBE_IMAGE:-ghcr.io/maybe-finance/maybe:latest}
|
|
restart: ${MAYBE_RESTART:-unless-stopped}
|
|
volumes:
|
|
- ${VOL_PATH:-/data}/maybe/storage:/rails/storage
|
|
environment:
|
|
- SELF_HOSTED=true
|
|
- RAILS_FORCE_SSL=false
|
|
- RAILS_ASSUME_SSL=false
|
|
- SECRET_KEY_BASE=${MAYBE_SECRET_KEY_BASE:-ChangeThisPassword}
|
|
- DB_HOST=maybe-db
|
|
- POSTGRES_DB=maybe
|
|
- POSTGRES_USER=maybe
|
|
- POSTGRES_PASSWORD=${MAYBE_DB_PASSWORD:-ChangeThisPassword}
|
|
- REDIS_URL=redis://maybe-redis:6379/1
|
|
ports:
|
|
- ${MAYBE_PORT:-3000}:3000
|
|
networks:
|
|
- proxy
|
|
- internal
|
|
depends_on:
|
|
- maybe-db
|
|
- maybe-redis
|
|
|
|
maybe-worker:
|
|
image: ${MAYBE_IMAGE:-ghcr.io/maybe-finance/maybe:latest}
|
|
restart: ${MAYBE_RESTART:-unless-stopped}
|
|
environment:
|
|
- SELF_HOSTED=true
|
|
- SECRET_KEY_BASE=${MAYBE_SECRET_KEY_BASE:-ChangeThisPassword}
|
|
- DB_HOST=maybe-db
|
|
- POSTGRES_DB=maybe
|
|
- POSTGRES_USER=maybe
|
|
- POSTGRES_PASSWORD=${MAYBE_DB_PASSWORD:-ChangeThisPassword}
|
|
- REDIS_URL=redis://maybe-redis:6379/1
|
|
networks:
|
|
- internal
|
|
depends_on:
|
|
- maybe-db
|
|
- maybe-redis
|
|
command:
|
|
- bundle
|
|
- exec
|
|
- sidekiq
|
|
|
|
maybe-db:
|
|
image: ${POSTGRES_IMAGE:-postgres:16-alpine}
|
|
restart: ${MAYBE_RESTART:-unless-stopped}
|
|
volumes:
|
|
- ${VOL_PATH:-/data}/maybe/db:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_DB=maybe
|
|
- POSTGRES_USER=maybe
|
|
- POSTGRES_PASSWORD=${MAYBE_DB_PASSWORD:-ChangeThisPassword}
|
|
networks:
|
|
- internal
|
|
|
|
maybe-redis:
|
|
image: ${REDIS_IMAGE:-redis:7-alpine}
|
|
restart: ${MAYBE_RESTART:-unless-stopped}
|
|
networks:
|
|
- internal
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
internal:
|