We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8ad7fc commit 74c1728Copy full SHA for 74c1728
Dockerfile
@@ -4,7 +4,8 @@ ENV PHP_OPCACHE_VALIDATE_TIMESTAMPS="0" \
4
PHP_OPCACHE_MAX_ACCELERATED_FILES="10000" \
5
PHP_OPCACHE_MEMORY_CONSUMPTION="192" \
6
PHP_OPCACHE_MAX_WASTED_PERCENTAGE="10" \
7
- PHP_MEMORY_LIMIT="512M"
+ PHP_MEMORY_LIMIT="512M"\
8
+ PHP_MAX_EXECUTION_TIME="60"
9
10
RUN apk info \
11
&& echo @edge http://nl.alpinelinux.org/alpine/edge/community >> /etc/apk/repositories \
usr/local/etc/php/php.ini
@@ -4,7 +4,7 @@
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
-max_execution_time = 60
+max_execution_time = ${PHP_MAX_EXECUTION_TIME}
max_input_time = 60
memory_limit = ${PHP_MEMORY_LIMIT}
0 commit comments