20 lines
504 B
YAML
20 lines
504 B
YAML
services:
|
|
matrix-qr-login:
|
|
build: .
|
|
image: matrix-qr-login:latest
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
MATRIX_HOMESERVER: "https://jb.evilfox.cc"
|
|
SERVER_PORT: "8080"
|
|
TOKEN_USES: "1"
|
|
TOKEN_EXPIRY_SECONDS: "300"
|
|
LOG_LEVEL: "info"
|
|
MATRIX_USE_UNSTABLE_MSC3882: "false"
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:8080/health"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 5s
|