美文网首页
docker php-fpm容器中添加GD扩展

docker php-fpm容器中添加GD扩展

作者: 御风而来的蚂蚁 | 来源:发表于2022-03-10 16:55 被阅读0次

apt update #更新软件源

apt install -y libwebp-dev libjpeg-dev libpng-dev libfreetype6-dev #安装各种库

docker-php-source extract #解压源码

cd /usr/src/php/ext/gd #gd源码文件夹

docker-php-ext-configure gd --with-webp-dir=/usr/include/webp --with-jpeg-dir=/usr/include --with-png-dir=/usr/include --with-freetype-dir=/usr/include/freetype2 #准备编译

docker-php-ext-install gd #编译安装

php -m | grep gd

相关文章

网友评论

      本文标题:docker php-fpm容器中添加GD扩展

      本文链接:https://www.haomeiwen.com/subject/yozfdrtx.html