Install Apache ActiveMQ Artemis using Docker Compose
You can use the official Docker Image of Apache ActiveMQ Artemis at https://hub.docker.com/r/apache/activemq-artemis. The contents of our docker-compose.yaml file for installing ActiveMQ Artemis with Docker Compose will look like this:
1 2 3 4 5 6 7 8 9 10 |
services: activemq-artemis: image: apache/activemq-artemis:latest container_name: 'activemq-artemis' ports: - 61616:61616 - 8161:8161 volumes: - ./activemq_data:/data/activemq - ./activemq_log:/var/log/activemq |
We need to expose the 2 default ports of ActiveMQ Artemis and Artemis Console… Read More