summaryrefslogtreecommitdiffstats
path: root/update.sh
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2017-03-03 18:23:05 +0100
committerTilo Spannagel <development@tilosp.de>2017-03-07 14:31:01 +0100
commit534665db850902068eca461cf1e67c2309e8ebaa (patch)
tree4ba471ce0874d64a4c22fde2c0c4586d22af763d /update.sh
parent362905d20e18f23bdd1cd3cda6534acc215caaa3 (diff)
Changed the php version back to 5.6 for nextcloud 9 and 109.0.57-fpm9.0.57-apache9.0.5710.0.4-fpm10.0.4-apache10.0.4
Diffstat (limited to 'update.sh')
-rwxr-xr-xupdate.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/update.sh b/update.sh
index 583aab0c..aabb5375 100755
--- a/update.sh
+++ b/update.sh
@@ -16,7 +16,11 @@ for latest in "${latests[@]}"; do
for variant in apache fpm; do
# Create the version+variant directory with a Dockerfile.
mkdir -p "$version/$variant"
- cp Dockerfile.template "$version/$variant/Dockerfile"
+ if [ "$version" == "11.0" ]; then
+ cp Dockerfile-php7.template "$version/$variant/Dockerfile"
+ else
+ cp Dockerfile.template "$version/$variant/Dockerfile"
+ fi
echo "updating $latest [$version] $variant"