+fix 'web' spy does nothing before 'docker-compose up' -> now in 'post-start' script

This commit is contained in:
xdrm-brackets 2018-02-20 14:14:23 +01:00
parent b85c357d9a
commit 13e9af7d6e
2 changed files with 17 additions and 6 deletions

View File

@ -15,6 +15,11 @@ TRIGGER="`realpath $ROOT/../../virtual/ci/web`";
while true; do
while [ -f $TRIGGER ]; do
sleep 1;
done;
# 1. Go to root directory
cd $ROOT/../..;
@ -32,9 +37,4 @@ while true; do
# N. Recreate trigger
test ! -f $TRIGGER && touch $TRIGGER;
while [ -f $TRIGGER ]; do
sleep 1;
done;
done;

View File

@ -69,3 +69,14 @@ fi;
## [3] Grant www-data for CI triggers
echo -n " * Grant php on triggers.....";
docker exec php-fpm chown www-data -R /ci && echo "granted" || (echo "failed"; exit 1);
## [4] Update vhost libs/builds
# 1. Update composer
echo -n " * Build composer............";
docker exec php-fpm bash -c "cd /vhost; composer install" >/dev/null 2>&1 && echo "built" || (echo "failed"; exit 1);
# 2. Re-build js/scss
echo -n " * Webpack build.............";
docker exec php-fpm bash -c "cd /vhost; npm install; npm run build" >/dev/null 2>&1 && echo "built" || (echo "failed"; exit 1);