Re: Camel Route Not Starting in Docker

2017-08-27 Thread dennyejose
Seems like you are not making those ports shared . Check the docker documents. Docker localhost and your machine localhost are not shared until you map it. When you dockerize your code you can specify port mappings in the build..Then only your docker app code can reach out to the outside world

Re: Camel Route Not Starting in Docker

2017-08-26 Thread Taariq Levack
Looks like you're connecting to a broker on localhost, which in docker is not the same. On 23 Aug 2017 03:47, "Jeremy Deane" wrote: > If start a local Spring-Boot App with a Camel Route listening to ActiveMQ, > itself either local or from a Docker Container, then the Camel Route > starts. > That