How Docker installs ActiveMQ

Step 1: Pull related images

docker pull  webcenter/activemq

Insert picture description here

Step 2: Implementation

docker images

View related mirroring operation
Insert picture description here

Step 3: Start the configuration port mapping

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

Test: Native web port

http://192.168.56.10:8162/admin

Where 192.168.56.10 is obtained

ip addr

Insert picture description here
Which configure the login user name/password:admin / admin
Insert picture description here
Configuration is successful

Guess you like

Origin blog.csdn.net/weixin_44763595/article/details/109657425
Recommended