Add here the description...
mvn clean install
Executes the Maven default lifecycle up to the install phase. During package phase a runnable JAR is created and during install phase a docker image is build.
Powershell
$env:IMAGE='prox-proposal-service'; `
$env:TAG='latest'; `
docker-compose -f ./src/main/docker/docker-compose.yml up
Bash/Shell
export IMAGE="prox-proposal-service" &&
export TAG="latest" &&
docker-compose -f ./src/main/docker/docker-compose.yml up
Starts a Docker container based on the compose file and the image. A Docker
network named prox
is required for the communication between services:
docker network create prox
For the necessary steps please look in Run/Debug in IntelliJ IDEA.
This service is currently developed by
- < Add your name here>