mirror of
https://gitea.zaclys.com/yannic/selfhosting.git
synced 2026-04-26 09:10:42 +02:00
Add tinyauth
This commit is contained in:
@@ -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
|
||||||
@@ -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}"
|
||||||
Reference in New Issue
Block a user