Skip to content

Instantly share code, notes, and snippets.

@pkunc
Last active July 31, 2023 15:26
Show Gist options
  • Save pkunc/362f648d10548f70083f58edac8cae23 to your computer and use it in GitHub Desktop.
Save pkunc/362f648d10548f70083f58edac8cae23 to your computer and use it in GitHub Desktop.
How to build a Domino container

How to build a Domino container

Commands for building a container image for HCL Domino, using a comunity script.

First, set the software installers location:

export SOFTWARE_DIR=~/software

Build a Domino image with the most used add-ons:

./build.sh domino +verse +nomad +restapi -checkonly -verifyonly
./build.sh domino +verse +nomad +restapi

Build a Leap image (applied on top of the Domino image):

./build.sh leap -checkonly -verifyonly
./build.sh leap

Build a Traveler image (applied on top of the Domino image):

./build.sh traveler -checkonly -verifyonly
./build.sh traveler

Build a Domino image for the specific version:

./build.sh domino 12.0.1 +verse +nomad +restapi -checkonly -verifyonly
./build.sh domino 12.0.1 +verse +nomad +restapi -imagename=hclcom/domino -imagetag=12.0.1

Build a Domino image for the beta version:

./build.sh domino 14.0.0EA2 -checkonly -verifyonly
./build.sh domino 14.0.0EA2 -imagename=hclcom/domino -imagetag=14.0.0EA2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment