feat(activemq): add docker-compose configuration for ActiveMQ
This commit is contained in:
parent
d023595636
commit
d0396d9348
|
@ -0,0 +1,17 @@
|
|||
services:
|
||||
activeMQ:
|
||||
image: apache/activemq-classic
|
||||
container_name: ${CONTAINER_NAME}
|
||||
ports:
|
||||
- "${WEB_PORT}:8161"
|
||||
- "${OPEN_WIRE_PROT}:61616"
|
||||
volumes:
|
||||
- ./conf/activemq.xml:/opt/apache-activemq/conf/activemq.xml
|
||||
- ./conf/jetty.xml:/opt/apache-activemq/conf/jetty.xml
|
||||
- ./data/kahadb:/opt/apache-activemq/data/kahadb
|
||||
environment:
|
||||
ACTIVEMQ_BROKER_NAME: ms-broker-a
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
Loading…
Reference in New Issue