Spring Applications

Infrastructure

PostgreSQL Database Server

The software of the PostgreSQL server can either be downloaded and installed locally, or the server can be started with Docker using the following command (details see Docker Hub):

docker run --name postgres
           -p <port>:5432
           -e POSTGRES_USER=<user>
           -e POSTGRES_PASSWORD=<password>
           -e POSTGRES_DB=<db-name>
           -d postgres

ActiveMQ Message Broker

The software of the ActiveMQ server can either be downloaded and installed locally, or the server can be started with Docker using the following command (details see ActiveMQ Artemis Documentation):

docker run --name activemq
           -p <port>:8161
           -p <admin-port>:61616 
           -e ACTIVEMQ_WEB_USER=<user>
           -e ACTIVEMQ_WEB_PASSWORD=<password>
           -d apache/activemq-classic