From 6b0f7c145911f4585527f7853a92a8cf4694dcf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com> Date: Mon, 4 Dec 2023 11:35:32 +0100 Subject: [PATCH] WIP: pipeline --- .gitlab-ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ccd853d..e3f9aed 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -116,12 +116,17 @@ info: test: tags: [docker] services: - - docker:20.10-dind + - docker:24.0.5-dind + before_script: + - docker info variables: # This is a workaround for the gitlab-runner health check mechanism when # using docker-dind service. The runner will otherwise guess the port # wrong and the health check will timeout. - SERVICE_PORT_2376_TCP_PORT: 2375 + #SERVICE_PORT_2376_TCP_PORT: 2375 + DOCKER_HOST: tcp://docker:2375 + # This instructs Docker not to start over TLS. + DOCKER_TLS_CERTDIR: "" stage: test image: $CI_REGISTRY_IMAGE_BASE needs: [cert] -- GitLab