first commit

This commit is contained in:
2026-05-06 10:52:59 +09:00
commit ca9ff7ba25
11 changed files with 1691 additions and 0 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
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
extra_hosts:
- "localhost:host-gateway"
networks:
- baron_net
networks:
baron_net:
external: true
name: baron_net