yanlongma / docker-lnmp

Deploying LNMP(Linux、Nginx、Mysql、PHP-FPM) using docker-compose.
92 stars 29 forks source link

php7.4有几个问题 #6

Open yljphp opened 4 years ago

yljphp commented 4 years ago
docker-php-ext-configure gd  --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ 

这个在7.4不能再使用了修改成了如下

docker-php-ext-configure gd  --with-freetype=/usr/include/ --with-jpeg=/usr/include/ 

另外一个问题,无法安装swoole扩展

yanlongma commented 4 years ago

感谢反馈