From 507cc4cf3759c24fee3a5ffcf2d5034b72abd8a6 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Wed, 11 Jun 2025 03:18:20 -0500 Subject: [PATCH] Push with docker, not podman --- .gitlab-ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4bb4245..b6998a8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -42,10 +42,12 @@ default: parallel: *parallel dependencies: - "Build image" - image: podman:latest + image: "docker:28-cli" + services: + - "docker:28-dind" tags: - kubernetes script: - - podman load -i "${IMG}.tar.gz" - - podman tag "localhost/${IMG}:latest" "$CI_REGISTRY/greg/ci-images/${IMG}:latest" - - podman push "$CI_REGISTRY/greg/ci-images/${IMG}:latest" + - docker load -i "${IMG}.tar.gz" + - docker tag "localhost/${IMG}:latest" "$CI_REGISTRY/greg/ci-images/${IMG}:latest" + - docker push "$CI_REGISTRY/greg/ci-images/${IMG}:latest"