diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 33944cf..7b63edd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,6 +16,12 @@ check_app_update: image: debian:latest tags: - docker + variables: + DOCKER_HOST: "tcp://docker:2375" + DOCKER_TLS_CERTDIR: "" + services: + - name: docker:dind + command: ["--tls=false"] script: - apt-get update - apt-get install -y git @@ -68,6 +74,7 @@ build_docker_frontend: command: ["--tls=false"] variables: DOCKER_HOST: tcp://docker:2375 + DOCKER_DRIVER: overlay2 DOCKER_TLS_CERTDIR: "" tags: - docker @@ -92,6 +99,8 @@ deploy_production: dependencies: - build_docker_frontend - check_app_update + tags: + - docker before_script: - apk add --no-cache openssh-client docker-cli - mkdir -p ~/.ssh