From 1cfe168c54809cca1140c92fa7c7e6db31e6ff80 Mon Sep 17 00:00:00 2001 From: Stephane de Labrusse Date: Wed, 8 Jan 2025 11:36:09 +0100 Subject: [PATCH 1/2] feat(build): add minimum version label for NethServer images --- build-images.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build-images.sh b/build-images.sh index a398a1f..0c20f49 100644 --- a/build-images.sh +++ b/build-images.sh @@ -32,6 +32,7 @@ buildah config --entrypoint=/ \ --label="org.nethserver.authorizations=traefik@any:routeadm cluster:accountconsumer" \ --label="org.nethserver.tcp-ports-demand=1" \ --label="org.nethserver.rootfull=0" \ + --label="org.nethserver.min-from:1.2.1" \ --label="org.nethserver.images=docker.io/redis:6.2.12-alpine docker.io/mariadb:10.6.20 docker.io/nginx:1.27.3-alpine ghcr.io/nethserver/nextcloud-app:${IMAGETAG}" \ "${container}" # Commit the image From 430d394a51a807f2d2c98ef50a7c0cfd79d07fb0 Mon Sep 17 00:00:00 2001 From: Stephane de Labrusse Date: Wed, 8 Jan 2025 11:51:57 +0100 Subject: [PATCH 2/2] fix(build): set the equal for the version Co-authored-by: Davide Principi --- build-images.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-images.sh b/build-images.sh index 0c20f49..6808919 100644 --- a/build-images.sh +++ b/build-images.sh @@ -32,7 +32,7 @@ buildah config --entrypoint=/ \ --label="org.nethserver.authorizations=traefik@any:routeadm cluster:accountconsumer" \ --label="org.nethserver.tcp-ports-demand=1" \ --label="org.nethserver.rootfull=0" \ - --label="org.nethserver.min-from:1.2.1" \ + --label="org.nethserver.min-from=1.2.1" \ --label="org.nethserver.images=docker.io/redis:6.2.12-alpine docker.io/mariadb:10.6.20 docker.io/nginx:1.27.3-alpine ghcr.io/nethserver/nextcloud-app:${IMAGETAG}" \ "${container}" # Commit the image