feat(activemq): add docker-compose configuration for ActiveMQ

This commit is contained in:
brightching 2024-11-15 19:34:01 +08:00
parent d023595636
commit d0396d9348
1 changed files with 17 additions and 0 deletions

View File

@ -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