2 years ago
As title says, I need to update php.ini to these values:
RUN echo "upload_max_filesize = 128M" >> /usr/local/etc/php/php.ini
RUN echo "post_max_size = 128M" >> /usr/local/etc/php/php.ini
RUN echo "max_execution_time = 300" >> /usr/local/etc/php/php.ini
RUN echo "max_input_time = 300" >> /usr/local/etc/php/php.ini
How can I do this? I am using wordpress image, I do not have any code on local machine
3 Replies
2 years ago
60d73e41-7abe-4350-85cb-32205ec70e33
2 years ago
you can modify these things in the start command
2 years ago
ah, got ya, thanks!