Sign inSign up

ovox/zimbrabuild-rhel8

By ovox

Updated over 2 years ago

Image for building zimbra FOSS from source code for rhel8

Image
0

954

ovox/zimbrabuild-rhel8 repository overview

This image is used for building Zimbra FOSS 9 and 10 from official Synacor github repo, please follow this instructions or our video guide https://youtu.be/hEmEVLNsIIw:

First you need to create a github account do not attempt to build Zimbra without completing this step, as it simply won't work.

Create the following temporary directories on your system and pull the image:

mkdir ~/rhel8

cd ~/rhel8

mkdir ssh

mkdir volume

docker pull docker.io/ovox/zimbrabuild-rhel8

Create a rsa key:

ssh-keygen -t rsa -b 4096 -C "[email protected]" -f ~/rhel8/ssh/id_rsa

Upload the contents of id_rsa.pub here: https://github.com/settings/keys
Try your key with GitHub via SSH.

chmod 700 ~/rhel8/ssh/id_rsa

ssh -T [email protected] -i ~/rhel8/ssh/id_rsa

Build zimbra 9 for rhel8:

cd ~/rhel8

docker run --rm --name "zimbrabuild_rhel8"
-v $PWD/volume:/home/git/BUILDS
-v $PWD/ssh:/root/.ssh
-e BUILD_NO="0001"
-e BUILD_RELEASE="KEPLER"
-e BUILD_RELEASE_NO="9.0.0"
-e BUILD_OS="RHEL8_64"
-e BUILD_ARCH="amd64"
-e BUILD_TYPE="FOSS"
-e PKG_OS_TAG="r8"
-e BUILD_RELEASE_CANDIDATE="GA"
-e BUILD_THIRDPARTY_SERVER="files.zimbra.com"
-e INTERACTIVE="0"
docker.io/ovox/zimbrabuild-rhel8:latest

Build zimbra 10 for rhel8:

cd ~/rhel8

docker run --rm --name "zimbrabuild_rhel8"
-v $PWD/volume:/home/git/BUILDS
-v $PWD/ssh:/root/.ssh
-e BUILD_NO="0001"
-e BUILD_RELEASE="DAFFODIL"
-e BUILD_RELEASE_NO="10.0.6"
-e BUILD_OS="RHEL8_64"
-e BUILD_ARCH="amd64"
-e BUILD_TYPE="FOSS"
-e PKG_OS_TAG="r8"
-e BUILD_RELEASE_CANDIDATE="GA"
-e BUILD_THIRDPARTY_SERVER="files.zimbra.com"
-e INTERACTIVE="0"
docker.io/ovox/zimbrabuild-rhel8:latest

Tag summary

Content type

Image

Digest

sha256:241677780

Size

447 MB

Last updated

over 2 years ago

docker pull ovox/zimbrabuild-rhel8