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 1950af1 commit 34a04f7Copy full SHA for 34a04f7
Dockerfile
@@ -3,7 +3,8 @@ FROM php:7.3.8-fpm-alpine3.10
3
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"
+ PHP_OPCACHE_MAX_WASTED_PERCENTAGE="10" \
7
+ PHP_MEMORY_LIMIT="512M"
8
9
RUN apk info \
10
&& echo @edge http://nl.alpinelinux.org/alpine/edge/community >> /etc/apk/repositories \
usr/local/etc/php/php.ini
@@ -6,7 +6,7 @@
max_execution_time = 60
max_input_time = 60
-memory_limit = 512M
+memory_limit = ${PHP_MEMORY_LIMIT}
11
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
12
; Error handling and logging ;
0 commit comments