Skip to main content

Posts

Showing posts from June, 2017

Docker Maven Plugin for Spring Applications

1. Add the following plugin in your pom.xml:   <plugin>               <groupId>com.spotify</groupId>               <artifactId>docker-maven-plugin</artifactId>               <version>0.4.13</version>                 <executions>                     <execution>                         <goals>                             <goal>build</goal>                         </goals>                         <phase>package</phase>                     </execution>                 </executions>               <configuration>                 <imageName>testrespository/${project.artifactId}</imageName>                 <baseImage>frolvlad/alpine-oraclejdk8:slim</baseImage>                 <entryPoint>["java", "-Dspring.profiles.active=local", "-DCCP_CONFIG_FILE=configCCP.xml", "-jar", "/${project.build.fina