News

Install Consul using Docker Compose

You can use the official Docker Image of Consul at https://hub.docker.com/_/consul to install Consul using Docker Compose. The contents of the Docker Compose file are as follows: services: consul: image: consul:1.15.4 ports: – 8500:8500 command: “agent -dev -client=0.0.0.0″ Here, I use the command “agent -dev”… Read More

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 to install ActiveMQ Artemis with Docker Compose will be as follows: services: activemq-artemis: image: apache/activemq-artemis:latest container_name: ‘activemq-artemis’ ports: – 61616:61616 – 8161:8161 volumes: – ./activemq_data:/data/activemq -… Read More