Skip to content

Instantly share code, notes, and snippets.

@jimmidyson
Last active August 29, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimmidyson/ab7ade661514ac44eed1 to your computer and use it in GitHub Desktop.
Save jimmidyson/ab7ade661514ac44eed1 to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.jolokia</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.12.0</version>
<configuration>
<images>
<image>
<name>${docker.image}</name>
<build>
<from>fabric8/java</from>
<assembly>
<descriptorRef>artifact-with-dependencies</descriptorRef>
</assembly>
<env>
<MAIN>org.jboss.weld.environment.se.StartMain</MAIN>
</env>
</build>
<run>
<ports>
<port>8080:8080</port>
</ports>
</run>
</image>
</images>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment