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 .PHONY: docker-test
### Test docker image ### Test docker image
docker-test: 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} docker run --rm -it ${DOCKER_IMAGE}
.PHONY: docker-shell .PHONY: docker-shell

View File

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