Source code of filesite.io. https://filesite.io
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
428 B

# PHP Extensions needed
* php-mbstring
* php-gd
## install php extensions in docker
### alpine
```
docker exec -it {container id} sh
apk add php-mbstring
...
```
### php-fpm:alpine
```
docker exec -it {container id} sh
apk add \
zlib-dev \
libpng-dev \
freetype-dev \
libjpeg-turbo-dev \
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install -j$(nproc) gd
...
```