diff --git a/build-images.sh b/build-images.sh index cd00b8e..02e8466 100644 --- a/build-images.sh +++ b/build-images.sh @@ -14,6 +14,7 @@ images=() repobase="${REPOBASE:-ghcr.io/geniusdynamics}" # Configure the image name reponame="espocrm" +APP_VERSION="9.2-apache" # Create a new empty container image container=$(buildah from scratch) @@ -45,7 +46,7 @@ buildah config --entrypoint=/ \ --label="org.nethserver.authorizations=traefik@node:routeadm" \ --label="org.nethserver.tcp-ports-demand=1" \ --label="org.nethserver.rootfull=0" \ - --label="org.nethserver.images=docker.io/mariadb:10.11.5 docker.io/espocrm/espocrm:apache" \ + --label="org.nethserver.images=docker.io/mariadb:10.11.5 docker.io/espocrm/espocrm:${APP_VERSION}" \ "${container}" # Commit the image buildah commit "${container}" "${repobase}/${reponame}"