We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d061b1 commit 8d6cde9Copy full SHA for 8d6cde9
test/prod.sh
@@ -3,4 +3,8 @@
3
PHP_SERVICE=${PHP_SERVICE-php}
4
5
docker-compose run --rm ${PHP_SERVICE} php --version
6
-docker-compose run --rm ${PHP_SERVICE} php -i | grep opcache
+# this would match even if module is not loaded, eg. when commented out in opcache.ini
7
+# docker-compose run --rm ${PHP_SERVICE} php -i | grep opcache
8
+
9
+# better check loaded module list
10
+docker-compose run --rm ${PHP_SERVICE} php -m | grep -i opcache
0 commit comments