feat: improve comments

This commit is contained in:
Simon Cornet 2025-06-10 17:07:47 +02:00
commit f90da9e49c

View file

@ -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"