diff --git a/.gitlab/image-build.yaml b/.gitlab/image-build.yaml index 36ff98d..3399b47 100644 --- a/.gitlab/image-build.yaml +++ b/.gitlab/image-build.yaml @@ -10,17 +10,17 @@ image-build: image: "quay.io/buildah/stable:latest" script: - # Login to container registry + # login - "echo $CR_PASSWORD | buildah login -u $CR_USERNAME --password-stdin $CR_HOSTNAME" - # Build image using buildah (rootless) + # build image - "buildah bud -t docs-simoncor-net ." - # Tag the image for registry + # tag the image - "buildah tag docs-simoncor-net cr.simoncor.net/siempie/docs-simoncor-net:latest" - # Push the image + # push the image - "buildah push cr.simoncor.net/siempie/docs-simoncor-net:latest" - # Logout + # logout - "buildah logout $CR_HOSTNAME"