Add tinyauth

This commit is contained in:
Yax 2025-12-10 18:18:07 +01:00
parent 7c67d8f093
commit ba2343e658
2 changed files with 12 additions and 0 deletions

View file

@ -3,8 +3,10 @@ ROOT_INSTALL=/srv
TZ=Europe/Paris TZ=Europe/Paris
PUID=1000 PUID=1000
PGID=1000 PGID=1000
AUTH_USER_PASSWORD=user:$$a.00d
# apps # apps
WALLABAG_URL=http://localhost WALLABAG_URL=http://localhost
NTFY_URL=http://localhost:8017 NTFY_URL=http://localhost:8017
NTFY_BEHIND_PROXY=true NTFY_BEHIND_PROXY=true
TINYAUTH_URL=http://localhost:8020

View file

@ -0,0 +1,10 @@
services:
tinyauth:
image: ghcr.io/steveiliop56/tinyauth:v4
container_name: tinyauth
restart: unless-stopped
ports:
- '8020:80'
environment:
- APP_URL="${TINYAUTH_URL}"
- USERS="${AUTH_USER_PASSWORD}"