Revert "Fix: signal propagation"

This reverts commit 6f5b045c2e.
This commit is contained in:
Daniil Gentili 2024-07-15 09:55:44 +02:00
parent 6f5b045c2e
commit e123566f1b

View File

@ -1,4 +1,14 @@
#!/usr/bin/env sh
VERSION=1.0.0
CURRENT_VERSION=$(cat /tas_version)
if [ "$VERSION" != "$CURRENT_VERSION" ]; then
echo "Wrong docker image version, expected $VERSION, got $CURRENT_VERSION, please run docker compose pull!"
exit 1
fi
composer install
docker-compose-wait \
&& nice -n 20 php server.php -e=.env.docker --docker "$@"