From 10b3e061b85151155832a184fa4d0221a07cfa36 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sat, 6 Nov 2021 18:52:15 +0200 Subject: [PATCH] Change the latest httpd image to bullseye. --- .gitlab-ci.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 62ca6ed..c25b9c1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -45,44 +45,44 @@ push-cgit: build-httpd: extends: .container-build-base variables: - CONTEXT: httpd/buster + CONTEXT: httpd/bullseye push-httpd: extends: .container-push-base variables: - CONTEXT: httpd/buster + CONTEXT: httpd/bullseye IMAGE: httpd needs: - job: build-httpd artifacts: true -# httpd buster image: +# httpd bullseye image: -push-httpd-buster: +push-httpd-bullseye: extends: .container-push-base variables: - CONTEXT: httpd/buster + CONTEXT: httpd/bullseye IMAGE: httpd - TAG: buster + TAG: bullseye needs: - job: build-httpd artifacts: true -# httpd bullseye image: +# httpd buster image: -build-httpd-bullseye: +build-httpd-buster: extends: .container-build-base variables: - CONTEXT: httpd/bullseye + CONTEXT: httpd/buster -push-httpd-bullseye: +push-httpd-buster: extends: .container-push variables: - CONTEXT: httpd/bullseye + CONTEXT: httpd/buster IMAGE: httpd - TAG: bullseye + TAG: buster needs: - - job: build-httpd-bullseye + - job: build-httpd-buster artifacts: true # sshd image: -- GitLab