Sign inSign up

ovox/zimbrabuild-centos7

By ovox

Updated over 3 years ago

images for building zimbra FOSS for centos7 from source code

Image
0

1.0K

ovox/zimbrabuild-centos7 repository overview

This image is used for building Zimbra FOSS 9 and 10 from official Synacor github, 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 ~/centos7

cd ~/centos7

mkdir ssh

mkdir volume

docker pull docker.io/ovox/zimbrabuild-centos7

Create a rsa key:

ssh-keygen -t rsa -b 4096 -C "[email protected]" -f ~/centos7/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 ~/centos7/ssh/id_rsa

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

Build zimbra 9 for centos7:

cd ~/centos7

docker run --rm --name "zimbrabuild_centos7"
-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="RHEL7_64"
-e BUILD_ARCH="amd64"
-e BUILD_TYPE="FOSS"
-e PKG_OS_TAG="r7"
-e BUILD_RELEASE_CANDIDATE="GA"
-e BUILD_THIRDPARTY_SERVER="files.zimbra.com"
-e INTERACTIVE="0"
docker.io/ovox/zimbrabuild-centos7:latest

Build zimbra 10 for centos7:

cd ~/centos7

docker run --rm --name "zimbrabuild_centos7"
-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="RHEL7_64"
-e BUILD_ARCH="amd64"
-e BUILD_TYPE="FOSS"
-e PKG_OS_TAG="r7"
-e BUILD_RELEASE_CANDIDATE="GA"
-e BUILD_THIRDPARTY_SERVER="files.zimbra.com"
-e INTERACTIVE="0"
docker.io/ovox/zimbrabuild-centos7:latest

Tag summary

Content type

Image

Digest

sha256:330571a41

Size

430.8 MB

Last updated

over 3 years ago

docker pull ovox/zimbrabuild-centos7