Files
oak-editor/docker

Docker Images

Olive uses Docker containers for continuous integration on Linux. No Docker images are involved for the Windows and macOS CI.

Overview

ci-common is the shared build image with GCC, Clang and packages that are needed by most dependent images. It is used to compile Olive's dependencies in a controlled environment. The final CI image ci-olive is assembled from images maintained by the Olive team as well as from aswf-docker.

Dependency hierarchy:

  1. ci-common
  2. ci-otio, ci-crashpad, ci-ffmpeg
  3. ci-olive

Usage

Pull images from Docker Hub:

docker pull olivevideoeditor/ci-common:2
docker pull olivevideoeditor/ci-package-otio
docker pull olivevideoeditor/ci-package-crashpad
docker pull olivevideoeditor/ci-package-ffmpeg:4.2.4
docker pull olivevideoeditor/ci-olive:2021.2

Use ci-olive image as local build container, by mounting working copy at ~/olive into guest system at /opt/olive/olive:

docker run --rm -it -v ~/olive:/opt/olive/olive olivevideoeditor/ci-olive:2021.2
mkdir build
cd build
cmake .. -G Ninja
cmake --build .

Rebuild all images locally:

cd docker
docker build -t olivevideoeditor/ci-common:2 -f ci-common/Dockerfile .
docker build -t olivevideoeditor/ci-package-otio -f ci-otio/Dockerfile .
docker build -t olivevideoeditor/ci-package-crashpad -f ci-crashpad/Dockerfile .
docker build -t olivevideoeditor/ci-package-ffmpeg:4.2.4 -f ci-ffmpeg/Dockerfile .
docker build -t olivevideoeditor/ci-olive:2021.2 -f ci-olive/Dockerfile .

Publish images:

docker push olivevideoeditor/ci-common:2
docker push olivevideoeditor/ci-package-otio
docker push olivevideoeditor/ci-package-crashpad
docker push olivevideoeditor/ci-package-ffmpeg:4.2.4
docker push olivevideoeditor/ci-olive:2021.2