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>
1.7 KiB
1.7 KiB
Tinyauth
Overview
Minimal authentication proxy middleware for securing apps behind a login screen.
Project Details
- Project Repository: GitHub
- Container Image: ghcr.io/steveiliop56/tinyauth
- Documentation: tinyauth.app
- Reverse Proxy Port:
3000
Getting Started
- Start the container:
docker compose up -d - Open http://localhost:3000 in your browser
- 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
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