I\'m trying to dockerize my website. I\'ve got Nginx and PHP up and running and it\'s working find except I can\'t connect to a db. When the page is loaded I get the error:<
You need to enable the php extension in your Dockerfile:
FROM php:7 RUN docker-php-ext-install mysqli
There is no need to touch php.ini.
php.ini