goweb-oidc/docker-compose.yml

24 lines
602 B
YAML
Raw Normal View History

2023-03-02 15:20:14 +01:00
version: "2.4"
services:
oidc-test:
build:
context: ./
dockerfile: ./misc/dokku/Dockerfile
args:
- HTTP_PROXY=${HTTP_PROXY:-}
- HTTPS_PROXY=${HTTPS_PROXY:-}
- http_proxy=${http_proxy:-}
- https_proxy=${https_proxy:-}
environment:
- LOG_LEVEL=0
- HTTP_ADDRESS=0.0.0.0:3002
- OIDC_CLIENT_ID=local-test
- OIDC_CLIENT_SECRET=local-test
2023-03-02 15:23:00 +01:00
- OIDC_ISSUER_URL=
2023-03-02 15:20:14 +01:00
- OIDC_REDIRECT_URL=http://localhost:3002
- OIDC_POST_LOGOUT_REDIRECT_URL=http://localhost:3002
ports:
- 3002:3002
network_mode: host