1、进入 php-fpm 容器

docker exec -it php-fpm /bin/bash

2、安装

# 更新软件源
apt-get update

# 安装相关库
apt-get install -y libwebp-dev libjpeg-dev libpng-dev libfreetype6-dev

# 解压源码
docker-php-source extract

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

3、编译

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

 4、安装

docker-php-ext-install gd