0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-05-03 07:30:53 +02:00

Nextcloud 18 EOL (#1377)

Signed-off-by: J0WI <J0WI@users.noreply.github.com>
This commit is contained in:
J0WI 2021-02-09 17:13:40 +00:00 committed by GitHub
parent 90b6e28f9e
commit 90f09c70ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
38 changed files with 1 additions and 1495 deletions

View file

@ -3,7 +3,6 @@ set -eo pipefail
declare -A php_version=(
[default]='7.4'
[18.0]='7.3'
)
declare -A cmd=(
@ -77,7 +76,7 @@ variants=(
fpm-alpine
)
min_version='18.0'
min_version='19.0'
# version_greater_or_equal A B returns whether A >= B
function version_greater_or_equal() {
@ -142,16 +141,6 @@ function create_variant() {
;;
esac
case "$version" in
18.* )
sed -ri -e '
\@bcmath@d;
s/'"redis-${pecl_versions[redis]}"'/redis-4.3.0/g;
' "$dir/Dockerfile"
;;
esac
# Copy the shell scripts
for name in entrypoint cron; do
cp "docker-$name.sh" "$dir/$name.sh"