mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-07-17 15:31:13 +00:00
24 lines
471 B
YAML
24 lines
471 B
YAML
services:
|
|
caddy:
|
|
image: caddy:2.11.4
|
|
pull_policy: missing
|
|
ports:
|
|
- 80:80
|
|
volumes:
|
|
- ./conf:/etc/caddy
|
|
|
|
whoami:
|
|
image: traefik/whoami:v1.11.0
|
|
pull_policy: missing
|
|
|
|
tinyauth:
|
|
build:
|
|
context: ../
|
|
dockerfile: Dockerfile
|
|
args:
|
|
- VERSION=e2e
|
|
- BUILD_TAGS=nomsgpack
|
|
- LDFLAGS=-s -w
|
|
command: ["--configfile", "/app/config.yaml"]
|
|
volumes:
|
|
- ./config.e2e.yaml:/app/config.yaml:ro |