MySQLi not found dockerized php

前端 未结 4 1244
南旧
南旧 2021-01-04 05:06

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:<

4条回答
  •  一个人的身影
    2021-01-04 06:11

    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.

提交回复
热议问题