File size: 455 Bytes
560ee81 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash
if [ -z "$GIT_EMAIL" ]; then
echo "You need to pass the \$GIT_EMAIL variable to the container for this to work"
exit
fi
if [ -z "$GIT_NAME" ]; then
echo "You need to pass the \$GIT_NAME variable to the container for this to work"
exit
fi
# Try auto install for composer
if [ -f "${WEBROOT}/composer.lock" ]; then
composer install --no-dev --working-dir=${WEBROOT}
fi
cd ${WEBROOT}
git pull || exit 1
chown -Rf nginx:nginx ${WEBROOT}
|