It may be just my Docker know-how, but I can't get the networks to work.
I am trying to start the Mule server through the pr3d4t0r / mule repository. I can run it, hot swappable applications, but I can achieve this.
I can start the local server without Docker and it works flawlessly. But not when I try it with Docker.
When I try to run a simple curl command, I get "curl: (56) Error Recv: Connection reset by peer"
curl http:
I tried to expose the ports through -P and separately through -p 8090: 8090, but no luck.
When the docker works, it blocks ports (I tried to start Docker and a regular server at the same time, but the regular one said the ports are already in use).
When I try to use another image like jboss / wildfly and I use -p 8080: 8080, no problem, it works fine.
The application in the mule server will register and respond to a simple "hello world", the output says that the application is deployed, but there are no messages or logging while I try to reach it.
Any suggestions?
source share