0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-06-10 05:44:47 +02:00

Remove end of life version 10.0

This commit is contained in:
Tilo Spannagel 2017-08-27 10:58:21 +02:00
parent 261f545fab
commit 6a7a09903f
No known key found for this signature in database
GPG key ID: B89F1626A58E1429
12 changed files with 16 additions and 389 deletions

View file

@ -26,17 +26,14 @@ for latest in "${latests[@]}"; do
continue
fi
# Only add versions >= 10
if version_greater_or_equal "$version" "10.0"; then
# Only add versions >= 11
if version_greater_or_equal "$version" "11.0"; then
for variant in apache fpm; do
# Create the version+variant directory with a Dockerfile.
mkdir -p "$version/$variant"
template="Dockerfile.template"
if version_greater_or_equal "$version" "11.0"; then
template="Dockerfile-php7.template"
fi
cp "$template" "$version/$variant/Dockerfile"
echo "updating $latest [$version] $variant"