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 Artemis Message Broker

The software of the Artemis 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 artemis
           -p <port>:8161
           -p <admin-port>:61616 
           -e ARTEMIS_USER=<user>
           -e ARTEMIS_PASSWORD=<password>
           -e ANONYMOUS_LOGIN=true
           -d apache/activemq-artemis