zA
zA
I'm running v0.6.333 and this is how I have it setup: This goes under `account` service: ``` account: ... environment: ... - OPENID_CLIENT_ID=${AUTH_CLIENT_ID} - OPENID_CLIENT_SECRET=${AUTH_CLIENT_SECRET} - OPENID_ISSUER=${AUTH_URL}/realms/${AUTH_REALM} ``` `AUTH_CLIENT_ID` should...
All those settings in your docker compose are mappings for the services, ie: ``` - ACCOUNTS_URL=http://${SERVER_ADDRESS}:3000 - REKONI_URL=http://${SERVER_ADDRESS}:4004 - TRANSACTOR_URL=ws://${SERVER_ADDRESS}:3333 - COLLABORATOR_URL=ws://${SERVER_ADDRESS}:3078 - COLLABORATOR_API_URL=http://${SERVER_ADDRESS}:3078 ``` and I'm only including here...
I'm running v0.6.333 and this is how I have mine setup and it works: ``` - OPENID_CLIENT_ID=${AUTH_CLIENT_ID} - OPENID_CLIENT_SECRET=${AUTH_CLIENT_SECRET} - OPENID_ISSUER=${AUTH_URL}/realms/${AUTH_REALM} ``` `AUTH_CLIENT_ID` should be the "Client ID" you've setup...