Compare commits

..

1 Commits

Author SHA1 Message Date
Dominik Meyer 67a600396b
ADD: divided application and configuration directory 2021-06-05 13:08:55 +02:00
1 changed files with 6 additions and 0 deletions

View File

@ -9,22 +9,28 @@ fi
# for updating from old docker container
if [ -d /home/wikindx/core ]; then
echo -n "found application in config directory ..."
mv /home/wikindx/config.php /tmp/
rm /home/wikindx/* -rf
mv /tmp/config.php /home/wikindx/config.php
chown -R www-data.www-data /home/wikindx
echo "removed"
fi
# make sure a configuration file exists
if [ ! -e /home/wikindx/config.php ]; then
echo "no configuration file yet exist ..."
cp /var/www/html/config.php.dist /home/wikindx/config.php
chown -R www-data.www-data /home/wikindx
echo "created"
fi
# make sure configuration file is linked to application directory
if [ ! -e /var/www/html/config.php ]; then
echo "No link to configuration found in application directory ..."
ln -s /home/wikindx/config.php /var/www/html/config.php
chown -R www-data.www-data /var/www/html/wikindx
echo "created"
fi
docker-php-entrypoint apache2-foreground