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

14 lines
319 B
Bash
Raw Normal View History

2017-01-30 01:58:46 +00:00
#!/bin/bash
# @app pluie/alpine-symfony
# @author a-Sansara https://git.pluie.org/pluie/docker-images
if [ ! -d /app/$WWW_DIR ]; then
cd /tmp
mkdir $WWW_DIR
symfony new app $SYMFONY_VERSION
mv app/* /app/
chown -R 1000:apache /app/
chown -R 1000:apache /app/var
chmod -R g+w /app
fi