Skip to content

aruandre/gradle-sample-app

Repository files navigation

Gradle Docker example

This is an example Java application that uses Spring Boot 2, Gradle and Docker.

Create a multi-stage docker image

To compile and package using Docker multi-stage builds

docker build . -t my-app

Create a Docker image packaging an existing jar

./gradlew build
docker build . -t my-app -f Dockerfile.only-package

To run the docker image

docker run -p 8080:8080 my-app

And then visit http://localhost:8080 in your browser.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published