Modifications

This commit is contained in:
bkraul 2024-08-21 16:12:01 +00:00
parent dde9d00c42
commit 759fd29718
2 changed files with 3 additions and 5 deletions

View File

@ -15,9 +15,9 @@ This image adds built-in support for the following features:
* ImageMagick: (The `fpm-alpine` image does not natively support any image formats (including the needed SVG format), due to it missing `imagemagick` package). This image corrects that. * ImageMagick: (The `fpm-alpine` image does not natively support any image formats (including the needed SVG format), due to it missing `imagemagick` package). This image corrects that.
# Current Versions # Current Versions
The current `29-fpm-alpine` and `29-fpm` version is **29.0.2**\ The current `29-fpm-alpine` and `29-fpm` version is **29.0.5**\
The current `28-fpm-alpine` and `28-fpm` version is **28.0.6**\ The current `28-fpm-alpine` and `28-fpm` version is **28.0.9**\
The current `27-fpm-alpine` and `27-fpm` version is **27.1.10** The current `27-fpm-alpine` and `27-fpm` version is **27.1.11**
# Deprecated Versions # Deprecated Versions
The last `26-fpm-alpine` and `26-fpm` version is **26.0.10** (No longer officially supported/updated by Nextcloud)\ The last `26-fpm-alpine` and `26-fpm` version is **26.0.10** (No longer officially supported/updated by Nextcloud)\

2
build
View File

@ -39,8 +39,6 @@ do
# pull the parent image from docker hub, if it doesn't already exist locally. # pull the parent image from docker hub, if it doesn't already exist locally.
LOCAL_EXISTS=$(docker images --format "{{.Repository}}:{{.Tag}}" | grep -x ${UPSTREAM_IMAGE}:${UPSTREAM_IMAGE_TAG}) LOCAL_EXISTS=$(docker images --format "{{.Repository}}:{{.Tag}}" | grep -x ${UPSTREAM_IMAGE}:${UPSTREAM_IMAGE_TAG})
echo "LOCAL_EXISTS: $LOCAL_EXISTS"
echo "USE_LOCAL: $USE_LOCAL"
if [[ $USE_LOCAL == 1 && $LOCAL_EXISTS != "" ]]; then if [[ $USE_LOCAL == 1 && $LOCAL_EXISTS != "" ]]; then
echo "Using local image ${UPSTREAM_IMAGE}:${UPSTREAM_IMAGE_TAG}..." echo "Using local image ${UPSTREAM_IMAGE}:${UPSTREAM_IMAGE_TAG}..."
else else