I was trying to host a custom docker keycloak image in an azure contain app. There exists the ingress option but I had to choose another solution as the keycloak service was stopped every 3 minutes after last activity and I do not know why.
Then I tried to host the docker keycloak image in an app service but there is no ingress option...
My docker image:
keycloak:
image: MyDomain/test/custom-keycloak:11.10.1
container_name: keycloak
ports:
- 8080:8080
- 8443:8443
How can I access the server on port 8443 when there exists no ingress ???
App Service listens on one port and it's port 80. You can set the WEBSITES_PORT application setting to a different port if needed. In your case, 8080, but mapping 2 ports is not allowed.