Add tinyauth
This commit is contained in:
parent
7c67d8f093
commit
ba2343e658
2 changed files with 12 additions and 0 deletions
|
|
@ -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
|
||||||
10
10-tinyauth/docker-compose.tinyauth.yml
Normal file
10
10-tinyauth/docker-compose.tinyauth.yml
Normal 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}"
|
||||||
Loading…
Add table
Reference in a new issue