xxxxxxxxxx
Once you have started your cluster, you can use Conduktor to easily manage it.
Just connect against localhost:9092.
If you are on Mac or Windows and want to connect from another container,
use host.docker.internal:29092
xxxxxxxxxx
host.docker.internal
# Above is the preferred / reliable way (On windows at least)
# Below is not always true
172.17.0.1
xxxxxxxxxx
docker inspect some-rabbit
you will get the ip address and port number from hear.
http://172.17.0.2:15672/
docker host ip
xxxxxxxxxx
It depends on your docker images.
I saw 172.40.0.42 smh like that.
Now you can learn with `docker inspect <image id|name>` command.
docker ps
docker inspect <container-id> | grep IpAddress
If your purpose is request among docker images
you have to use host.docker.internal instead of localhost.