docker-images/pluie/alpine-symfony/pre-init.d/10-symfony.sh

15 lines
353 B
Bash
Raw Normal View History

2016-08-09 01:08:26 +00:00
#!/bin/bash
# @app pluie/alpine-symfony
# @author a-Sansara https://git.pluie.org/pluie/docker-images
2017-01-29 22:44:52 +00:00
ln -s /usr/bin/php7 /usr/bin/php
2016-08-09 01:08:26 +00:00
if [ ! -d /app/$WWW_DIR ]; then
cd /tmp
mkdir $WWW_DIR
symfony new app $SYMFONY_VERSION
mv app/* /app/
chown -R 1000:apache /app/
2016-08-12 02:06:57 +00:00
chown -R 1000:nogroup /app/var
2016-08-09 01:08:26 +00:00
chmod -R g+w /app
fi