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
+58
View File
@@ -0,0 +1,58 @@
# Tinyauth
## Overview
Minimal authentication proxy middleware for securing apps behind a login screen.
## Project Details
- **Project Repository:** [GitHub](https://github.com/steveiliop56/tinyauth)
- **Container Image:** [ghcr.io/steveiliop56/tinyauth](https://github.com/steveiliop56/tinyauth/pkgs/container/tinyauth)
- **Documentation:** [tinyauth.app](https://tinyauth.app/docs/getting-started/)
- **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
TINYAUTH_APPURL public URL of the tinyauth instance
TINYAUTH_AUTH_USERS user:bcrypt-hash pairs; generate with `docker run -i -t --rm ghcr.io/steveiliop56/tinyauth:v5 user create --interactive`
Note: `$` in bcrypt hashes must be escaped as `$$` inside compose files
## Volume Notes
None — tinyauth is stateless
## Network Notes
Requires proxy network
## Docker Run
```bash
docker run -d \
--name tinyauth \
-p 3000:3000 \
-e TINYAUTH_APPURL=http://localhost:3000 \
-e 'TINYAUTH_AUTH_USERS=user:$2a$10$hash' \
ghcr.io/steveiliop56/tinyauth:v5
```
## Additional Notes / Gotchas
Tinyauth is forward-auth middleware — it protects apps via your reverse proxy (Traefik/NPM/Caddy) rather than being visited directly. Nginx Proxy Manager guide: https://tinyauth.app/docs/guides/nginx-proxy-manager/
## Dockhand Stack, Deploy from Git
Cookbooks Repository
stackname: tinyauth_dev
Compose file path: tinyauth_dev/compose.yaml
Additional env file (optional): tinyauth_dev/sample.env
Then "Load" tinyauth_dev/sample.env into the Environmental variables in dockhand
Create the Stack
+15
View File
@@ -0,0 +1,15 @@
services:
tinyauth:
image: ${TINYAUTH_IMAGE:-ghcr.io/steveiliop56/tinyauth:v5}
restart: ${TINYAUTH_RESTART:-unless-stopped}
environment:
- TINYAUTH_APPURL=${TINYAUTH_APPURL:-http://localhost:3000}
- TINYAUTH_AUTH_USERS=${TINYAUTH_AUTH_USERS:-user:$$2a$$10$$ReplaceWithBcryptHash}
ports:
- ${TINYAUTH_PORT:-3000}:3000
networks:
- proxy
networks:
proxy:
external: true
+7
View File
@@ -0,0 +1,7 @@
# Tinyauth
VOL_PATH=/data
TINYAUTH_IMAGE=ghcr.io/steveiliop56/tinyauth:v5
TINYAUTH_RESTART=unless-stopped
TINYAUTH_PORT=3000
TINYAUTH_APPURL=http://localhost:3000
TINYAUTH_AUTH_USERS=user:$2a$10$ReplaceWithBcryptHash