Skip to content

Instantly share code, notes, and snippets.

@yogsma
Last active August 31, 2017 03:21
Show Gist options
  • Save yogsma/c4f17e48035118416d72b3a941b6904e to your computer and use it in GitHub Desktop.
Save yogsma/c4f17e48035118416d72b3a941b6904e to your computer and use it in GitHub Desktop.
<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>1.0.0</version>
<configuration>
<imageName>${docker.image.prefix}/benefits</imageName>
<dockerHost>https://192.168.99.100:2376</dockerHost>
<dockerCertPath>C:\Users\Yogesh Mali\.docker\machine\machines\default</dockerCertPath>
<dockerDirectory>src/main/docker</dockerDirectory>
<resources>
<resource>
<targetPath>/</targetPath>
<directory>${project.build.directory}</directory>
<include>${project.build.finalName}.jar</include>
</resource>
</resources>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment