forum/docker/php/start.sh
2017-04-22 20:29:25 +02:00

17 lines
425 B
Bash

#!/bin/sh
set -xe
# Detect the host IP
export DOCKER_BRIDGE_IP=$(ip ro | grep default | cut -d' ' -f 3)
if [ "APP_ENV" = 'prod' ]; then
composer install --prefer-dist --no-dev --no-progress --no-suggest --optimize-autoloader --classmap-authoritative
else
composer install --prefer-dist --no-progress --no-suggest
fi
# Permissions hack because setfacl does not work on Mac and Windows
chown -R www-data var
exec php-fpm