libreoffice-online/docker
Andras Timar ba847a7f58 docker: support ppc64le
Signed-off-by: Andras Timar <andras.timar@collabora.com>
Change-Id: Ie3ba247471aec999a1af09e5a7140cf70b45ac03
2022-09-18 21:03:43 +02:00
..
from-packages docker: support ppc64le 2022-09-18 21:03:43 +02:00
from-source docker: add CODE branding (optionally) to image built from source 2022-07-19 21:54:51 +02:00
README docker: better handling of customer repo URL 2022-09-18 19:34:26 +02:00

Collabora Online docker

This directory contains everything needed to compile a
working docker container with Collabora Online.

Docker image can be built from packages or from source code.

All docker images built from this directory can be run with a TZ environment variable
to set the server timezone to something other than UTC.

Examples:

1. Build latest CODE based on Ubuntu 18.04 LTS

  cd from-packages
  docker build --no-cache -t mydomain/code -f Ubuntu .

2. Build Collabora Online 22.05 based on Ubuntu 18.04 LTS

  cd from-packages
  # Get your secret URL key from https://support.collaboraoffice.com/ (Collabora Partners/Customers)
  # e.g. the secret key is Example-413539ece39485afc35b4a469adfde0a279d2fd2
  echo Example-413539ece39485afc35b4a469adfde0a279d2fd2 > secret_key
  docker build --no-cache --secret id=secret_key,src=secret_key --build-arg type=cool -t mydomain/cool -f Ubuntu .

3. Build Collabora Online 22.05 based on RHEL8

  cd from-packages
  # Get your secret URL key from https://support.collaboraoffice.com/ (Collabora Partners/Customers)
  # e.g. the secret key is Example-413539ece39485afc35b4a469adfde0a279d2fd2
  echo Example-413539ece39485afc35b4a469adfde0a279d2fd2 > secret_key
  docker build --no-cache --secret id=secret_key,src=secret_key --build-arg type=cool -t mydomain/cool -f RHEL8 .

4. Build Collabora Online 22.05 license key enabled version based on Ubuntu 18.04 LTS

   cd from-packages
   docker build --no-cache --build-arg type=key -t mydomain/cool -f Ubuntu .

5. Build Collabora Online from master branch (from source code)

   cd from-source
   ./build.sh

Check build.sh for more build options!