Skip to content

rhuss/ipaas-quickstarts

 
 

Repository files navigation

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

About

quickstarts for the fabric8 project

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 99.5%
  • Other 0.5%