From df1a00c9796fe961038ca715d06355e0cd4d88e7 Mon Sep 17 00:00:00 2001 From: Tim de Pater Date: Thu, 7 Oct 2021 21:37:35 +0200 Subject: [PATCH] Replace old PHP7 example with PHP8 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e541645..57bd3ae 100644 --- a/README.md +++ b/README.md @@ -51,11 +51,11 @@ Nginx configuration: PHP configuration: - docker run -v "`pwd`/php-setting.ini:/etc/php7/conf.d/settings.ini" trafex/php-nginx + docker run -v "`pwd`/php-setting.ini:/etc/php8/conf.d/settings.ini" trafex/php-nginx PHP-FPM configuration: - docker run -v "`pwd`/php-fpm-settings.conf:/etc/php7/php-fpm.d/server.conf" trafex/php-nginx + docker run -v "`pwd`/php-fpm-settings.conf:/etc/php8/php-fpm.d/server.conf" trafex/php-nginx _Note; Because `-v` requires an absolute path I've added `pwd` in the example to return the absolute path to the current directory_