| scripts | ||
| .gitlab-ci.yml | ||
| Dockerfile.custom | ||
| Dockerfile.doc-gitlab-com | ||
| Dockerfile.gitlab-qa | ||
| Dockerfile.omnibus-gitlab-centos6 | ||
| Dockerfile.omnibus-gitlab-centos7 | ||
| Dockerfile.omnibus-gitlab-jessie | ||
| Dockerfile.omnibus-gitlab-opensuse42.2 | ||
| Dockerfile.omnibus-gitlab-stretch | ||
| Dockerfile.omnibus-gitlab-trusty | ||
| Dockerfile.omnibus-gitlab-wheezy | ||
| Dockerfile.omnibus-gitlab-xenial | ||
| Dockerfile.ruby-2.3.3-golang-1.8-git-2.13-chrome-59.0-node-7.1-postgresql-9.6 | ||
| Dockerfile.www-gitlab-com | ||
| LICENSE | ||
| README.md | ||
This repository is used to build docker images that are used to build and test various parts of GitLab:
- Build Omnibus packages
- Test GitLab-CE/EE project
- Build gitlab-org/www-gitlab-com project
Adding a new image
There are two methods to adding a new image:
- Use a docker buildfile
- Use a custom image with versioned features
Use a docker buildfile
A bespoke image is one that uses it's own Dockerfile. In the interests of avoiding repetition, it's better to use the custom docker build if possible.
Assuming the image you want to add is called new-image....
- Add a test task:
new-image test: *test_build - Add a new build task:
new-image: *build_and_deploy - Add a Dockerfile:
Dockerfile.new-image
Use a custom image with versioned features
To add a new image to the build, edit .gitlab-ci.yml.
With custom images, the name of the image is used to define the contents (as opposed to use a bespoke Dockerfile build).
For this reason, the name needs to be correctly defined.
The name is defined as [feature]-[version] pairs, separated by -.
Here are some example build names:
ruby-2.1-git-2.7-phantomjs-2.1ruby-2.3.3-golang-1.8-git-2.7-chrome-60.0-node-7.1-postgresql-9.6ruby-2.4.1-golang-1.8-git-2.7-phantomjs-2.1-node-7.1-postgresql-9.6
The first pair represents the base image and version. So ruby-2.1-... will use the ruby:2.1 base image, while
golang-1.8 will use the golang:1.8 base image.
Each of the following parts represents another feature and version. Available options are:
golanggitchromenodephantomjspostgres
Adding a new build
As an example, if you want to add new image for Ruby 2.4 with git 2.14 and golang 1.9,
the name would be ruby-2.4-golang-1.9-git-2.14.
- Add a test task:
ruby-2.4-golang-1.9-git-2.14 test: *test_custom - Add a new build task:
ruby-2.4-golang-1.9-git-2.14: *build_and_deploy_custom