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>
38 lines
1.2 KiB
YAML
38 lines
1.2 KiB
YAML
services:
|
|
fider:
|
|
image: ${FIDER_IMAGE:-getfider/fider:stable}
|
|
restart: ${FIDER_RESTART:-unless-stopped}
|
|
environment:
|
|
- BASE_URL=${FIDER_BASE_URL:-http://localhost:3000}
|
|
- DATABASE_URL=postgres://fider:${FIDER_DB_PASSWORD:-ChangeThisPassword}@fider-db:5432/fider?sslmode=disable
|
|
- JWT_SECRET=${FIDER_JWT_SECRET:-ChangeThisPassword}
|
|
- EMAIL_NOREPLY=${FIDER_EMAIL_NOREPLY:-noreply@example.com}
|
|
- EMAIL_SMTP_HOST=${FIDER_SMTP_HOST:-smtp.example.com}
|
|
- EMAIL_SMTP_PORT=${FIDER_SMTP_PORT:-587}
|
|
- EMAIL_SMTP_USERNAME=${FIDER_SMTP_USERNAME:-user}
|
|
- EMAIL_SMTP_PASSWORD=${FIDER_SMTP_PASSWORD:-ChangeThisPassword}
|
|
ports:
|
|
- ${FIDER_PORT:-3000}:3000
|
|
networks:
|
|
- proxy
|
|
- internal
|
|
depends_on:
|
|
- fider-db
|
|
|
|
fider-db:
|
|
image: ${POSTGRES_IMAGE:-postgres:17-alpine}
|
|
restart: ${FIDER_RESTART:-unless-stopped}
|
|
volumes:
|
|
- ${VOL_PATH:-/data}/fider/db:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_DB=fider
|
|
- POSTGRES_USER=fider
|
|
- POSTGRES_PASSWORD=${FIDER_DB_PASSWORD:-ChangeThisPassword}
|
|
networks:
|
|
- internal
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
internal:
|