diff --git a/Dockerfile b/Dockerfile index 27f9a2d..f23730a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:noble-20240605 -ARG PHP_VERSION="8.1.29" +ARG PHP_VERSION="8.1.30" ARG PHP_PACKAGE_BASENAME="php8.1" ARG PHP_PACKAGE_BASE_VERSION="8.1" ARG PHP_FPM_BINARY_PATH="/usr/sbin/php-fpm8.1" diff --git a/tests/test_fpm.sh b/tests/test_fpm.sh index 12fb8b1..93d6d30 100755 --- a/tests/test_fpm.sh +++ b/tests/test_fpm.sh @@ -3,8 +3,8 @@ set -e cd fpm -docker-compose down -docker-compose up -d php-fpm nginx +docker compose down +docker compose up -d php-fpm nginx docker compose exec php-fpm bash -c 'wget nginx:8080/index.php -q -O /tmp/response && cat /tmp/response' | grep "IT WORKS IN NGINX PHP-FPM" > /dev/null docker compose exec php-fpm bash -c 'wget nginx:8080/ -q -O /tmp/response && cat /tmp/response' | grep "IT WORKS IN NGINX PHP-FPM" > /dev/null @@ -21,4 +21,4 @@ fi docker compose exec php-fpm bash -c 'wget nginx:8080/phpinfo.php -q -O /tmp/response && cat /tmp/response' | grep "VARIABLE_NECESSARY_FOR_TEST" > /dev/null -docker-compose down +docker compose down