From d52d22e0db3ea04e9f33c2a2b11a7e47820635ef Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Wed, 4 Oct 2023 07:55:26 +0200 Subject: [PATCH] Add docker runner too --- m/hut/gitlab-runner.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/m/hut/gitlab-runner.nix b/m/hut/gitlab-runner.nix index 4d85848..fd12123 100644 --- a/m/hut/gitlab-runner.nix +++ b/m/hut/gitlab-runner.nix @@ -21,6 +21,19 @@ SHELL = "${pkgs.bash}/bin/bash"; }; }; + gitlab-bsc-es-docker = { + registrationConfigFile = config.age.secrets.gitlabToken.path; + dockerImage = "debian:stable"; + tagList = [ "docker" "xeon" ]; + registrationFlags = [ + "--locked='false'" + "--docker-network-mode host" + ]; + environmentVariables = { + https_proxy = "http://localhost:23080"; + http_proxy = "http://localhost:23080"; + }; + }; }; };