From f8d22b2d5a15c4fea4963b26dba29c2fdb33ffb5 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Tue, 16 Apr 2024 11:59:00 -0500 Subject: [PATCH] Use podman command instead of docker --- .gitlab-ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c71ce98..bea4b52 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,6 @@ stages: - build build: - image: docker:latest stage: build tags: - nix @@ -12,7 +11,7 @@ build: - |- for img in vm-test; do nix build ".#${img}" - docker load -i result - docker tag "${img}" $CI_REGISTRY/greg/ci-images/${img}:latest - docker push "$CI_REGISTRY/greg/ci-images/${img}:latest" + podman load -i result + podman tag "${img}" $CI_REGISTRY/greg/ci-images/${img}:latest + podman push "$CI_REGISTRY/greg/ci-images/${img}:latest" done