docker installation activemq

1, search mirrors docker search activemq

 

2, pulling the mirror docker pull webcenter / activemq  

3, query a local mirror docker images 

4, start activemq

  • 61616 is activemq use of container port
  • 8161 is a web page management port

docker run -d --name myactivemq -p 8161:8161 -p 61613:61613 -p 61616:61616 -p 1883:1883 webcenter/activemq:latest

http://192.168.111.35:8161/ is the management page, click manage activemq broker can enter management page (need to enter the account password admin admin).

 

Guess you like

Origin www.cnblogs.com/forthelichking/p/12047354.html