Sign inSign up

ovox/zimbrabuild-ubuntu20

By ovox

Updated over 3 years ago

image for building zimbra FOSS from source code for Ubuntu 20_04

Image
2

1.7K

ovox/zimbrabuild-ubuntu20 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 ~/ubuntu20

cd ~/ubuntu20

mkdir ssh

mkdir volume

docker pull docker.io/ovox/zimbrabuild-ubuntu20

Create a rsa key:

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

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

Build zimbra 9 for ubuntu20:

cd ~/ubuntu20

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

Build zimbra 10 for ubuntu20:

cd ~/ubuntu20

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

Tag summary

Content type

Image

Digest

sha256:679c96adf

Size

428.7 MB

Last updated

over 3 years ago

docker pull ovox/zimbrabuild-ubuntu20