0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-04-25 12:50:54 +02:00

Changed the php version back to 5.6 for nextcloud 9 and 10

This commit is contained in:
Tilo Spannagel 2017-03-03 18:23:05 +01:00
parent 362905d20e
commit 534665db85
No known key found for this signature in database
GPG key ID: B89F1626A58E1429
7 changed files with 90 additions and 26 deletions

View file

@ -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"