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
+60
View File
@@ -0,0 +1,60 @@
# Fider
## Overview
Feedback collection platform for product ideas, suggestions, and user voting.
## Project Details
- **Project Repository:** [GitHub](https://github.com/getfider/fider)
- **Container Image:** [getfider/fider](https://hub.docker.com/r/getfider/fider)
- **Documentation:** [fider.io](https://fider.io/docs)
- **Reverse Proxy Port:** `3000`
## Getting Started
1. Start the container: `docker compose up -d`
2. Open http://localhost:3000 in your browser
3. Follow the initial setup wizard to configure the application
## Environment Variable Notes
FIDER_JWT_SECRET long random string, generate with `openssl rand -hex 32`
FIDER_BASE_URL public URL of the instance
FIDER_SMTP_* Fider requires working email to sign in (magic links)
## Volume Notes
/var/lib/postgresql/data PostgreSQL data
## Network Notes
Requires proxy network
## Docker Run
```bash
docker run -d \
--name fider \
-p 3000:3000 \
-e BASE_URL=http://localhost:3000 \
-e DATABASE_URL=postgres://fider:pass@dbhost:5432/fider?sslmode=disable \
-e JWT_SECRET=changeme \
-e EMAIL_NOREPLY=noreply@example.com \
getfider/fider:stable
```
## Additional Notes / Gotchas
Email is not optional — sign-in uses magic links, so SMTP (or Mailgun env vars) must be configured before first use.
## Dockhand Stack, Deploy from Git
Cookbooks Repository
stackname: fider_dev
Compose file path: fider_dev/compose.yaml
Additional env file (optional): fider_dev/sample.env
Then "Load" fider_dev/sample.env into the Environmental variables in dockhand
Create the Stack
+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:
+14
View File
@@ -0,0 +1,14 @@
# Fider
VOL_PATH=/data
FIDER_IMAGE=getfider/fider:stable
POSTGRES_IMAGE=postgres:17-alpine
FIDER_RESTART=unless-stopped
FIDER_PORT=3000
FIDER_BASE_URL=http://localhost:3000
FIDER_DB_PASSWORD=ChangeThisPassword
FIDER_JWT_SECRET=ChangeThisPassword
FIDER_EMAIL_NOREPLY=noreply@example.com
FIDER_SMTP_HOST=smtp.example.com
FIDER_SMTP_PORT=587
FIDER_SMTP_USERNAME=user
FIDER_SMTP_PASSWORD=ChangeThisPassword