mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-04-20 04:19:18 +00:00
8 lines
240 B
Plaintext
8 lines
240 B
Plaintext
|
#!/bin/sh
|
||
|
mkdir -p /php/php-fpm.d /php/logs /php/run
|
||
|
|
||
|
sed -i -e 's/<UPLOAD_MAX_SIZE>/$UPLOAD_MAX_SIZE' \
|
||
|
-e 's/<MEMORY_LIMIT>/$PHP_MEMORY_LIMIT' \
|
||
|
/usr/local/etc/php-fpm.conf
|
||
|
|
||
|
chown -R $UID:GID /php /usr/local/etc/php-fpm.conf
|