LoginSignup
7
3

More than 3 years have passed since last update.

dockerのphp-fpmにGDとExifをインストールする

Posted at

Dockerのphp-fpmのイメージにはGDとExifが入っていません。
docker-php-ext-installからインストールする必要があります。

FROM php:7.2-fpm-stretch

...省略

# install GD & exif
RUN apt-get update && apt-get install -y \
        libfreetype6-dev \
        libjpeg62-turbo-dev \
        libmcrypt-dev \
        libpng-dev \
    && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
    && docker-php-ext-install -j$(nproc) gd exif
7
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
3