Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 1.16 KB

ReadMe.md

File metadata and controls

41 lines (26 loc) · 1.16 KB

Fabric8 Quickstarts

This project contains the following fabric8 parts:

Building

The build requires Maven version 3.2.5 or later.

mvn clean install

Building docker images

The docker images can be build by using the f8-build maven profile:

mvn -Pf8-build

Pushing docker images

The docker images can be built and pushed using the following maven command:

mvn -Pf8-build docker:push

Pushing docker images to registry

If you wish to push docker images to a private or public registry you will need to add a section to your ~/.m2/settings.xml file with a login/pwd:

	<servers>
       <server>
           <id>192.168.59.103:5000</id>
           <username>jolokia</username>
           <password>jolokia</password>
       </server>
        ...
  </servers>

For more details see the docker maven plugin docs