14 KiB
GitLab Container Registry
Since 8.8.0 GitLab introduces container registry. GitLab is helping to authenticate the user against the registry and proxy it via NGINX. If we are talking about Registry we are meaning the registry from docker and Container Registry is the feature of GitLab.
- Prerequisites
- Available Parameters
- Installation
- Maintenance
- Upgrading from an existing GitLab instance
Prerequisites
- Docker Distribution >= 2.4
- Docker GitLab >= 8.8.5-1
Available Parameters
Here is an example of all configuration parameters that can be used in the GitLab container.
...
gitlab:
...
environment:
- GITLAB_REGISTRY_ENABLED=true
- GITLAB_REGISTRY_HOST=registry.gitlab.example.com
- GITLAB_REGISTRY_PORT=5500
- GITLAB_REGISTRY_API_URL=http://registry:5000
- GITLAB_REGISTRY_KEY_PATH=/certs/registry-auth.key
- GITLAB_REGISTRY_ISSUER=gitlab-issuer
- SSL_REGISTRY_KEY_PATH=/certs/registry.key
- SSL_REGISTRY_CERT_PATH=/certs/registry.crt
where:
| Parameter | Description |
|---|---|
GITLAB_REGISTRY_ENABLED |
true or false. Enables the Registry in GitLab. By default this is false. |
GITLAB_REGISTRY_HOST |
The host URL under which the Registry will run and the users will be able to use. |
GITLAB_REGISTRY_PORT |
The port under which the external Registry domain will listen on. |
GITLAB_REGISTRY_API_URL |
The internal API URL under which the Registry is exposed to. |
GITLAB_REGISTRY_KEY_PATH |
The private key location that is a pair of Registry's rootcertbundle. Read the token auth configuration documentation. |
GITLAB_REGISTRY_PATH |
This should be the same directory like specified in Registry's rootdirectory. Read the storage configuration documentation. This path needs to be readable by the GitLab user, the web-server user and the Registry user if you use filesystem as storage configuration. Read more in #container-registry-storage-path. |
GITLAB_REGISTRY_ISSUER |
This should be the same value as configured in Registry's issuer. Otherwise the authentication will not work. For more info read the token auth configuration documentation. |
SSL_REGISTRY_KEY_PATH |
The private key of the SSL_REGISTRY_CERT_PATH. This will be later used in nginx to proxy your registry via https. |
SSL_REGISTRY_CERT_PATH |
The certificate for the private key of SSL_REGISTRY_KEY_PATH. This will be later used in nginx to proxy your registry via https. |
For more info look at Available Configuration Parameters.
A minimum set of these parameters are required to use the GitLab Container Registry feature.
...
gitlab:
environment:
- GITLAB_REGISTRY_ENABLED=true
- GITLAB_REGISTRY_HOST=registry.gitlab.example.com
- GITLAB_REGISTRY_API_URL=http://registry:5000
- GITLAB_REGISTRY_KEY_PATH=/certs/registry-auth.key
- GITLAB_REGISTRY_ISSUER=gitlab-issuer
...
Installation
Starting a fresh installation with GitLab Container registry would be like the docker-compose file.
Docker Compose
This is an example with a registry and filesystem as storage driver.
version: '2'
services:
redis:
restart: always
image: sameersbn/redis:latest
command:
- --loglevel warning
volumes:
- ./redis:/var/lib/redis:Z
postgresql:
restart: always
image: sameersbn/postgresql:9.6-2
volumes:
- ./postgresql:/var/lib/postgresql:Z
environment:
- DB_USER=gitlab
- DB_PASS=password
- DB_NAME=gitlabhq_production
- DB_EXTENSION=pg_trgm
gitlab:
restart: always
image: sameersbn/gitlab:8.17.0
depends_on:
- redis
- postgresql
ports:
- "10080:80"
- "5500:5500"
- "10022:22"
volumes:
- ./gitlab:/home/git/data:Z
- ./logs:/var/log/gitlab
- ./certs:/certs
environment:
- DEBUG=false
- DB_ADAPTER=postgresql
- DB_HOST=postgresql
- DB_PORT=5432
- DB_USER=gitlab
- DB_PASS=password
- DB_NAME=gitlabhq_production
- REDIS_HOST=redis
- REDIS_PORT=6379
- GITLAB_SSH_PORT=10022
- GITLAB_PORT=10080
- GITLAB_HOST=gitlab.example.com
- GITLAB_SECRETS_DB_KEY_BASE=superrandomsecret
- GITLAB_REGISTRY_ENABLED=true
- GITLAB_REGISTRY_HOST=registry.gitlab.example.com
- GITLAB_REGISTRY_PORT=5500
- GITLAB_REGISTRY_API_URL=http://registry:5000
- GITLAB_REGISTRY_KEY_PATH=/certs/registry-auth.key
- SSL_REGISTRY_KEY_PATH=/certs/registry.key
- SSL_REGISTRY_CERT_PATH=/certs/registry.crt
registry:
restart: always
image: registry:2.4.1
volumes:
- ./gitlab/shared/registry:/registry
- ./certs:/certs
environment:
- REGISTRY_LOG_LEVEL=info
- REGISTRY_STORAGE_FILESYSTEM_ROOTDIRECTORY=/registry
- REGISTRY_AUTH_TOKEN_REALM=http://gitlab.example.com:10080/jwt/auth
- REGISTRY_AUTH_TOKEN_SERVICE=container_registry
- REGISTRY_AUTH_TOKEN_ISSUER=gitlab-issuer
- REGISTRY_AUTH_TOKEN_ROOTCERTBUNDLE=/certs/registry-auth.crt
- REGISTRY_STORAGE_DELETE_ENABLED=true
Important Notice
- Don't change
REGISTRY_AUTH_TOKEN_SERVICE. It must havecontainer_registryas value.REGISTRY_AUTH_TOKEN_REALMneed to be look likehttp/s://gitlab.example.com/jwt/auth. Endpoint must be/jwt/authThese configuration options are required by the GitLab Container Registry.
Generating certificate for authentication with the registry
So GitLab handles for us the authentication with Registry we need an certificate to do that secure. With have here two options:
- Use a signed certificate from an Trusted Certificate Authority.
- Self-Signed Certificate for the authentication process.
Signed Certificate
If you have a signed certificate from a Trusted Certificate Authority you need only to copy the files in then certs folder and mount the folder in both containers (gitlab,registry) like in the docker-compose example.
After that you need to set an environment variable in each container.
In the GitLab Container you need to set GITLAB_REGISTRY_KEY_PATH this is the private key of the signed certificate.
In the Registry Container you need to set REGISTRY_AUTH_TOKEN_ROOTCERTBUNDLE to the certificate file of the signed certificate.
For more info read token auth configuration documentation.
Self Signed Certificate
Generate a self signed certificate with openssl.
- Step 1: Create a certs dir
mkdir certs && cd certs
- Step 2: Generate a private key and sign request for the private key
openssl req -nodes -newkey rsa:4096 -keyout registry-auth.key -out registry-auth.csr -subj "/CN=gitlab-issuer"
- Step 3: Sign your created privated key
openssl x509 -in registry-auth.csr -out registry-auth.crt -req -signkey registry-auth.key -days 3650
After this mount the certs dir in both containers and set the same environment variables like way of the signed certificate.
Container Registry storage driver
You can configure the Container Registry to use a different storage backend by configuring a different storage driver. By default the GitLab Container Registry is configured to use the filesystem driver, which makes use of storage path configuration. These configurations will all be done in the registry container.
The different supported drivers are:
| Driver | Description |
|---|---|
| filesystem | Uses a path on the local filesystem |
| azure | Microsoft Azure Blob Storage |
| gcs | Google Cloud Storage |
| s3 | Amazon Simple Storage Service |
| swift | OpenStack Swift Object Storage |
| oss | Aliyun OSS |
Read more about the individual driver's config options in the Docker Registry docs.
Warning
GitLab will not backup Docker images that are not stored on the filesystem. Remember to enable backups with your object storage provider if desired.
If you use filesystem as storage driver you need to mount the path from
GITLAB_REGISTRY_DIRof the GitLab container in the registry container. So both container can access the registry data. If you don't changeGITLAB_REGISTRY_DIRyou will find your registry data in the mounted volume from the GitLab Container under./gitlab/shared/registry. This don't need to be seprated mounted because./gitlabis already mounted in the GitLab Container. If it will be mounted seperated the whole restoring proccess of GitLab backup won't work because gitlab try to create an folder under./gitlab/shared/registry/GITLAB_REGISTRY_DIRand GitLab can't delete/remove the mount point inside the container so the restoring process of the backup will fail. An example how it works is in thedocker-compose.
Example for Amazon Simple Storage Service (s3)
If you want to configure your registry via /etc/docker/registry/config.yml your storage part should like this snippet below.
storage:
s3:
accesskey: 'AKIAKIAKI'
secretkey: 'secret123'
bucket: 'gitlab-registry-bucket-AKIAKIAKI'
cache:
blobdescriptor: inmemory
delete:
enabled: true
...
registry:
restart: always
image: registry:2.4.1
volumes:
- ./certs:/certs
environment:
- REGISTRY_LOG_LEVEL=info
- REGISTRY_AUTH_TOKEN_REALM=https://gitlab.example.com:10080/jwt/auth
- REGISTRY_AUTH_TOKEN_SERVICE=container_registry
- REGISTRY_AUTH_TOKEN_ISSUER=gitlab-issuer
- REGISTRY_AUTH_TOKEN_ROOTCERTBUNDLE=/certs/registry-auth.crt
- REGISTRY_STORAGE_S3_ACCESSKEY=AKIAKIAKI
- REGISTRY_STORAGE_S3_SECRETKEY=secret123
- REGISTRY_STORAGE_S3_BUCKET=gitlab-registry-bucket-AKIAKIAKI
- REGISTRY_CACHE_BLOBDESCRIPTOR=inmemory
- REGISTRY_STORAGE_DELETE_ENABLED=true
Generaly for more information about the configuration of the registry container you can find it under registry configuration.
Storage limitations
Currently, there is no storage limitation, which means a user can upload an infinite amount of Docker images with arbitrary sizes. This setting will be configurable in future releases.
Maintenance
If you use another storage configuration than filesystem it will have no impact on your Maintenance workflow.
Creating Backups
Creating Backups is the same like without a container registry. I would recommend to stop your registry container.
docker stop registry gitlab && docker rm registry gitlab
Execute the rake task with a removeable container.
docker run --name gitlab -it --rm [OPTIONS] \
sameersbn/gitlab:8.17.0 app:rake gitlab:backup:create
Restoring Backups
Gitlab also defines a rake task to restore a backup.
Before performing a restore make sure the container is stopped and removed to avoid container name conflicts.
docker stop registry gitlab && docker rm registry gitlab
Execute the rake task to restore a backup. Make sure you run the container in interactive mode -it.
docker run --name gitlab -it --rm [OPTIONS] \
sameersbn/gitlab:8.17.0 app:rake gitlab:backup:restore
The list of all available backups will be displayed in reverse chronological order. Select the backup you want to restore and continue.
To avoid user interaction in the restore operation, specify the timestamp of the backup using the BACKUP argument to the rake task.
docker run --name gitlab -it --rm [OPTIONS] \
sameersbn/gitlab:8.17.0 app:rake gitlab:backup:restore BACKUP=1417624827
Upgrading from an existing GitLab installation
If you want enable this feature for an existing instance of GitLab you need to do the following steps.
- Step 1: Update the docker image.
docker pull sameersbn/gitlab:8.17.0
- Step 2: Stop and remove the currently running image
docker stop gitlab && docker rm gitlab
- Step 3: Create a backup
docker run --name gitlab -it --rm [OPTIONS] \
sameersbn/gitlab:x.x.x app:rake gitlab:backup:create
-
Step 4: Create a certs folder Create an authentication certificate with Generating certificate for authentication with the registry.
-
Step 5: Create an registry instance
Important Notice
Storage of the registry must be mounted from gitlab from GitLab. GitLab must have the container of the registry storage folder to be able to create and restore backups
docker run --name registry -d \
--restart=always \
-v /srv/gitlab/shared/registry:/registry \
-v ./certs:/certs \
--env 'REGISTRY_LOG_LEVEL=info' \
--env 'REGISTRY_STORAGE_FILESYSTEM_ROOTDIRECTORY=/registry' \
--env 'REGISTRY_AUTH_TOKEN_REALM=http://gitlab.example.com/jwt/auth' \
--env 'REGISTRY_AUTH_TOKEN_SERVICE=container_registry' \
--env 'REGISTRY_AUTH_TOKEN_ISSUER=gitlab-issuer' \
--env 'REGISTRY_AUTH_TOKEN_ROOTCERTBUNDLE=/certs/registry-auth.crt' \
--env 'REGISTRY_STORAGE_DELETE_ENABLED=true' \
registry:2.4.1
- Step 6: Start the image
docker run --name gitlab -d [PREVIOUS_OPTIONS] \
-v /srv/gitlab/certs:/certs \
--env 'SSL_REGISTRY_CERT_PATH=/certs/registry.crt' \
--env 'SSL_REGISTRY_KEY_PATH=/certs/registry.key' \
--env 'GITLAB_REGISTRY_ENABLED=true' \
--env 'GITLAB_REGISTRY_HOST=registry.gitlab.example.com' \
--env 'GITLAB_REGISTRY_API_URL=http://registry:5000/' \
--env 'GITLAB_REGISTRY_KEY_PATH=/certs/registry-auth.key' \
--link registry:registry
sameersbn/gitlab:8.17.0