Files
pkce-login-demo/docker-compose.yml

24 lines
602 B
YAML

services:
login-demo:
build: .
container_name: baron-sso-login-demo
ports:
- "3333:3333"
environment:
- PORT=3333
- SESSION_SECRET=demo-session-secret
- OIDC_ISSUER_URL=https://sso-test.hmac.kr/oidc
- OIDC_CLIENT_ID=f5cdd938-a3ae-4e47-ab83-4c13e59949f5
- OIDC_REDIRECT_URI=http://localhost:3333/callback
- BARON_API_BASE_URL=https://sso-test.hmac.kr
- BARON_SESSION_VALIDATION_ENABLED=false
extra_hosts:
- "localhost:host-gateway"
networks:
- baron_net
networks:
baron_net:
external: true
name: baron_net