Cleanup
All checks were successful
dockerbuild / Build docker image (push) Successful in 1m6s

This commit is contained in:
Chris 2024-02-06 03:06:27 +01:00
parent 73822d60ca
commit e2c715b4d4
2 changed files with 2 additions and 8 deletions

View File

@ -35,10 +35,6 @@ docker-push:
.PHONY: docker-test
### Test docker image
docker-test:
#docker create --name php83-aio ${DOCKER_IMAGE}
#docker start -i php83-aio || true
#docker stop php83-aio
#docker rm php83-aio
docker run --rm -it ${DOCKER_IMAGE}
.PHONY: docker-shell

View File

@ -44,10 +44,8 @@ case "$VARIANT" in
esac
echo " -> Testing environment..."
if bin/console about -q; then
echo " Successful"
else
echo " !! Failed"
if ! bin/console about -q; then
echo " >> Failed"
fi
exit 0