26 lines
545 B
YAML
26 lines
545 B
YAML
---
|
|
variables:
|
|
STORAGE_DRIVER: "overlay"
|
|
|
|
stages:
|
|
- "build"
|
|
|
|
build:
|
|
stage: "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 image
|
|
- "buildah tag docs-simoncor-net cr.simoncor.net/siempie/docs-simoncor-net:latest"
|
|
|
|
# push image
|
|
- "buildah push cr.simoncor.net/siempie/docs-simoncor-net:latest"
|
|
|
|
# logout
|
|
- "buildah logout $CR_HOSTNAME"
|