From b6bfd2a999cce064d88189a821b3ba7589d86d47 Mon Sep 17 00:00:00 2001 From: Volker Schukai <volker.schukai@schukai.com> Date: Mon, 23 Oct 2023 01:28:32 +0200 Subject: [PATCH] fix: ci pipeline --- .gitlab-ci.yml | 3 ++- devenv.nix | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7dfd592..dbf0cd6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,6 +9,7 @@ image: docker-registry.schukai.com:443/nixos-ci-devenv:latest services: - docker:dind + variables: # The repo name as used in @@ -17,7 +18,7 @@ variables: NIXPKGS_ALLOW_UNFREE: "1" NIXPKGS_ALLOW_INSECURE: "1" DOCKER_DRIVER: overlay2 - DOCKER_HOST: tcp://192.168.1.91:2375 + DOCKER_HOST: unix:///var/run/docker.sock GIT_DEPTH: 10 stages: diff --git a/devenv.nix b/devenv.nix index 25f7091..939c30a 100644 --- a/devenv.nix +++ b/devenv.nix @@ -308,6 +308,7 @@ EOF services: - docker:dind + variables: # The repo name as used in @@ -316,7 +317,7 @@ EOF NIXPKGS_ALLOW_UNFREE: "1" NIXPKGS_ALLOW_INSECURE: "1" DOCKER_DRIVER: overlay2 - DOCKER_HOST: tcp://192.168.1.91:2375 + DOCKER_HOST: unix:///var/run/docker.sock GIT_DEPTH: 10 stages: -- GitLab