I\'m trying to set Magento2 on Docker with Nginx & PHP7.
I\'ve added a custom php.ini file as recommended by the PHP7 Docker image. I can see from phpinfo.php t
This is what happened : - If you map the php.ini from host to container, make sure that file (php.ini) must exist on host before you launch the container. Otherwise, the container will not start - Please check if docker was able to read your php.ini file (check permission, sometime docker is running as different user and can't access host file which belongs to root) - Every time you update php.ini, you must restart php-fpm (get inside the container and restart the php-fpm to test, do not rebuild container) , and clear cache (if you enable opcache)