4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

dockerのphp8にGD ライブラリをインストール

Last updated at Posted at 2023-02-13

dockerで起動したphp環境にGDライブラリがなかったので、なんとかインストールしました。

Dockerfile
RUN apt-get update &&\
  # JPEG 対応
  apt-get install -y libpng-dev libjpeg62-turbo-dev &&\
  docker-php-ext-configure gd --with-jpeg &&\
  docker-php-ext-install -j$(nproc) gd

    

あとDockerファイル編集したら --buildつけないといけなかったの忘れてしばらく悩んでしまった。。。

docker-compose up -d --build

  

ここに全て書いてありました。
php8.0でも動いてるみたいです。


上記の方法よりも直接php.iniに設定追加した方が早かった・・・

php.ini
extension=gd.so
4
2
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
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?