Install Cassandra using Docker Compose

You can use the official Docker Image of Cassandra at https://hub.docker.com/_/cassandra to install it using Docker Compose. The contents of my Docker Compose file are as follows:

The directory containing Cassandra data inside the container is /var/lib/cassandra, you should mount it outside like me… Read More

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:

Here, I use the command “agent -dev” to start Consul in development mode. There is an additional… 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:

The 2 default ports of ActiveMQ Artemis and Artemis Console, we need to expose… Read More