ActiveMQ dockerfile

This image contains a default configuration of ActiveMQ based on jakubzapletal/java:jdk-8-oracle. Comes bundled with hawtio.

Using the Docker Hub

This image is published under Jakub Zapletal's repository on the Docker Hub and all you need as a prerequisite is having Docker installed on your machine. The container exposes the following ports:

There is the prepared volume /data for saving data into a local machine.

To start a container with this image you just need to run the following command:

docker run -d -p 61612:61612 -p 61613:61613 -p 61616:61616 -p 8161:8161 -v <LOCAL_PATH>:/data --name activemq jakubzapletal/activemq

If you already have services running on your host that are using any of these ports, you may wish to map the container ports to whatever you want by changing left side number in the -p parameters. Find more details about mapping ports in the Docker documentation.

Building the image yourself

The Dockerfile and supporting configuration files are available in the Github repository. This comes specially handy if you want to change any configuration or simply if you want to know how the image was built.