Skip to content

Commit 832df3c

Browse files
committed
- enhancements
1 parent 6d65a6c commit 832df3c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,5 @@ This application (edge-service) has graalvm native image that starts within seco
2525
So this application have to wait 6-30 seconds for KC as it needs to register oidc clients during startup.
2626
As we cannot use `curl` command in KC container, so we are using custom script in keycloak service health check as mentioned above.
2727

28+
## Another Note:
29+
- Add `127.0.0.1 keycloak` entry in /etc/hosts file.

src/main/docker/compose.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: "3.9"
22
services:
3-
keycloak-identity-server:
3+
keycloak-identity-server-bb:
44
image: quay.io/keycloak/keycloak:23.0.6
5-
container_name: keycloak-identity-server
5+
container_name: keycloak
66
command: start-dev --http-port 38217 --import-realm
77
volumes:
88
- ./keycloak/data:/opt/keycloak/data/import
@@ -26,7 +26,7 @@ services:
2626
- AUTH_SERVER_URL=http://keycloak:38217
2727
- INTERNAL_LOGS=INFO
2828
depends_on:
29-
keycloak:
29+
keycloak-identity-server-bb:
3030
condition: service_healthy
3131
ports:
3232
- "127.0.0.1:32900:32900"

0 commit comments

Comments
 (0)