26 lines
565 B
YAML
26 lines
565 B
YAML
---
|
|
variables:
|
|
STORAGE_DRIVER: "overlay"
|
|
|
|
stages:
|
|
- "build"
|
|
|
|
image-build:
|
|
stage: "image-build"
|
|
image: "quay.io/buildah/stable:latest"
|
|
script:
|
|
|
|
# login
|
|
- "echo $CR_PASSWORD | buildah login -u $CR_USERNAME --password-stdin $CR_HOSTNAME"
|
|
|
|
# build image
|
|
- "buildah bud -t docs-simoncor-net ."
|
|
|
|
# tag the image
|
|
- "buildah tag docs-simoncor-net cr.simoncor.net/siempie/docs-simoncor-net:latest"
|
|
|
|
# push the image
|
|
- "buildah push cr.simoncor.net/siempie/docs-simoncor-net:latest"
|
|
|
|
# logout
|
|
- "buildah logout $CR_HOSTNAME"
|