11 by mounting docker activemq

activemq is a strong performance message bus. This article explains the installation by docker activemq.

1, the search activemq

docker search activemq

2, get activemq

docker pull  webcenter/activemq

3, start activemq

docker run -d --name myactivemq -p 61616:61616 -p 8161:8161 docker.io/webcenter/activemq

4, view the status

netstat -luntp|grep 8161
或者
docker ps

5, test

Open your browser and enter http://192.168.100.192:8161 , we can see the activemq management interface [Note that the author of the virtual machine ip is 192.168.100.192, the reader is set according to the actual situation].
So far, we have completed the installation activemq in the docker.

Guess you like

Origin www.cnblogs.com/alichengxuyuan/p/12581382.html