The following commands should be executed in the root directory of the application:
Build runnable .jar
mvn clean package
Build Docker Image
docker build -f "./Dockerfile" -t docker.nexus.archi-lab.io/archilab/shop-demo .
Create docker network
docker network create fae_backend
Start application with database
docker-compose -f "./src/main/docker/docker-compose.yml" -f "./src/main/docker/docker-compose.dev.yml" up
Stop application with database
docker-compose -f "./src/main/docker/docker-compose.yml" -f "./src/main/docker/docker-compose.dev.yml" down