Hi all, i started a keycloak server in developer mode on a vm using this docker-compose file.
version: '3.3'
services:
keycloak:
image: jboss/keycloak:latest
ports:
- "8024:8080"
environment:
- KEYCLOAK_USER=admin
- KEYCLOAK_PASSWORD=password
I access this vm via ssh with private and public key.
On the vm the container is up and running but if i try to make a tunnel to reach the WebUI of keycloack on the localhost:8024 i can't reach it.
Someone can help me?
Thanks