mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-03-14 18:52:05 +00:00
17 lines
385 B
YAML
17 lines
385 B
YAML
services:
|
|
nginx:
|
|
image: nginx:${NGINX_VERSION}
|
|
ports:
|
|
- 80:80
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
|
|
|
whoami:
|
|
image: traefik/whoami:${WHOAMI_VERSION}
|
|
|
|
tinyauth:
|
|
image: ghcr.io/steveiliop56/tinyauth:${TINYAUTH_VERSION}
|
|
command: --experimental.configfile=/data/config.yml
|
|
volumes:
|
|
- ./config.yml:/data/config.yml:ro
|