DOCKER_DRIVER: overlay

This commit is contained in:
François Pelletier 2023-10-17 16:04:00 -04:00
parent e190db3f03
commit c2e2186e89

View file

@ -7,13 +7,13 @@ stages:
build-push-docker-image-job:
stage: dockerize
# Specify a Docker image to run the job in.
image: docker:20-dind
image: docker
# Specify an additional image 'docker:dind' ("Docker-in-Docker") that
# will start up the Docker daemon when it is brought up by a runner.
before_script:
- docker login -u "$DOCKER_REGISTRY_USER" -p "$DOCKER_REGISTRY_PASSWORD" $DOCKER_REGISTRY_URL # Instructs GitLab to login to its registry
services:
- name: docker:20-dind
- name: docker
alias: docker
command: ["--tls=false"]
script:
@ -37,4 +37,3 @@ build-push-docker-image-job:
CAPROVER_URL: ${CAPROVER_URL}
CAPROVER_PASSWORD: ${CAPROVER_PASSWORD}
CAPROVER_APP: ${CAPROVER_APP}