/fusiongatewayapp-old

Primary LanguageJavaApache License 2.0Apache-2.0

Build, test and execute the jar

Build

mvn clean compile -DskipTests

Build with test

mvn clean compile

Execute

java -jar target/fusiongatewayapp-1.0.0-SNAPSHOT.jar

Build and execute the docker image

The application uses the Jib base image.

Build docker image to docker daemon

mvn install
# or specifically
mvn compile jib:dockerBuild

Build a docker image tarball

mvn compile jib:buildTar

The file can then be found in target/jib-image.tar

Execute the docker image from the docker daemon

docker run -it fusiongatewayapp

or in windows

docker run -p 8080:8080 -it fusiongatewayapp