16 lines
426 B
YAML
16 lines
426 B
YAML
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/"
|
|
- "./data1/activemq-data:/opt/apache-activemq/data"
|
|
environment:
|
|
ACTIVEMQ_BROKER_NAME: ms-broker-a
|
|
restart: unless-stopped
|
|
networks:
|
|
1panel-network:
|
|
external: true |