14 lines
404 B
YAML
14 lines
404 B
YAML
version: '3'
|
|
services:
|
|
deployment_portal_frontend_service:
|
|
build: ./
|
|
image: deployment_portal_frontend_service
|
|
ports:
|
|
- 3000:8080
|
|
environment:
|
|
- ISSUER=https://navi.okta.com
|
|
- REDIRECT_URI=http://localhost:3000/implicit/callback
|
|
- CLIENT_ID=0oa40w5ej7rLPe1MO357
|
|
- SCOPE=openid groups
|
|
- RESPONSE_TYPE=id_token
|
|
- BACKEND_URL=http://localhost:3000 |