From d0396d9348434bd342d929aff52f63d839f92ee5 Mon Sep 17 00:00:00 2001 From: BrightChing Date: Fri, 15 Nov 2024 19:34:01 +0800 Subject: [PATCH] feat(activemq): add docker-compose configuration for ActiveMQ --- apps/activeMQ/1.0.0/docker-compose.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 apps/activeMQ/1.0.0/docker-compose.yml diff --git a/apps/activeMQ/1.0.0/docker-compose.yml b/apps/activeMQ/1.0.0/docker-compose.yml new file mode 100644 index 0000000..151a06b --- /dev/null +++ b/apps/activeMQ/1.0.0/docker-compose.yml @@ -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 \ No newline at end of file