-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix keycloak example + improve CI build to catch a similar issue next time #161
Conversation
… time Signed-off-by: Marko Strukelj <marko.strukelj@gmail.com>
@@ -14,4 +14,4 @@ services: | |||
KEYCLOAK_PASSWORD: "admin" | |||
KEYCLOAK_HTTPS_PORT: 8443 | |||
PROXY_ADDRESS_FORWARDING: "true" | |||
command: "-Dkeycloak.profile.feature.upload_scripts=enabled" | |||
command: "-Dkeycloak.profile.feature.upload_scripts=enabled -b 0.0.0.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't be 0.0.0.0
IP address the default one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apparently the default one is some network interface with IP that is not accessible from other docker instances.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's for https, which is added extra via jboss-cli script. It's quite possible that there is a way to configure this in there, but adding -b 0.0.0.0 is simple enough for the test.
Signed-off-by: Marko Strukelj <marko.strukelj@gmail.com>
Signed-off-by: Marko Strukelj <marko.strukelj@gmail.com>
Signed-off-by: Marko Strukelj <marko.strukelj@gmail.com>
No description provided.