spring-attic / top-spring-boot-docker

Spring Boot Docker:: Topical guide to using Docker and how to create container images for Spring Boot applications :: spring-boot
https://spring.io/guides/topicals/spring-boot-docker
180 stars 127 forks source link

Fix Gradle snippet in Spring Boot Plugins #10

Closed fwaibel closed 4 years ago

fwaibel commented 4 years ago

The snippet accidentally uses builder instead of imageName.

You can modify the image name ... in Gradle using bootBuildImage.imageName. (Was bootBuildImage.builder)

bootBuildImage {
    imageName = "myorg/demo"
}
dsyer commented 4 years ago

I think someone else already fixed this.