Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ncp-docker-hook « bin - github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb288f71c1e9ff38b5e184f0fd51f7780ff5c235 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Here we have the opportunity to make changes in the persistent volume configuration before
# anything is started, after pulling a new image

# adjust PHP version (in case of php upgrade)
if php --version | grep -q v7.4 && [[ -f /data/etc/apache2/conf-available/php7.3-fpm.conf ]]; then
  a2disconf php7.3-fpm
  mv /data/etc/apache2/conf-available/php7.{3,4}-fpm.conf
  sed -i 's|php7.3|php7.4|g' /data/etc/apache2/conf-available/php7.4-fpm.conf
  a2enconf php7.4-fpm
fi