add 23 requested stacks from container-requests list

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>
This commit is contained in:
code
2026-07-16 06:24:26 +00:00
co-authored by Claude Fable 5
parent b332b8a581
commit b4375c3e09
70 changed files with 2274 additions and 56 deletions
+37
View File
@@ -0,0 +1,37 @@
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: