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>       ...