window docker mounted activemq

docker search activemq can view the latest version of webcenter / activemq of

1, pull official image, labeled 5.14.3

 docker pull webcenter / activemq: 5.14.3 (web version)

2 View Mirror

docker images

3, start

docker run --restart=always -p 8161:8161 -p 61616:61616  --name activemq -d webcenter/activemq:5.14.3

 

4, the access path

localhost:8161

User name and password are admin

--restart = always set to run automatically after starting Docker containers

--name Set the name of this container

-p 3306: 3306 is exposed to the front port, followed by an internal service port of the container

-d mysql: tag specified version of mysql installation, tag you can choose the optional version of the official documentation provided

 

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

Guess you like

Origin blog.csdn.net/ziwuzhulin/article/details/94739748
Recommended