From 61e6285d1e03ba07df47c1fee1c7412bd5da6fa0 Mon Sep 17 00:00:00 2001 From: Bachir Soussi Chiadmi Date: Tue, 26 Mar 2019 21:56:45 +0100 Subject: [PATCH] more settings in php --- Docker/php/Dockerfile | 1 + Docker/php/php-custom.ini | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/Docker/php/Dockerfile b/Docker/php/Dockerfile index 42a0e70..50eac4b 100644 --- a/Docker/php/Dockerfile +++ b/Docker/php/Dockerfile @@ -14,6 +14,7 @@ RUN apt-get update && apt-get install -y \ docker-php-ext-install -j$(nproc) gd && \ docker-php-ext-install pdo_mysql zip && \ docker-php-ext-install opcache && \ + docker-php-ext-install bcmath && \ apt-get install -y git vim && \ pecl install redis-3.1.0 && \ pecl install xdebug-2.5.0 && \ diff --git a/Docker/php/php-custom.ini b/Docker/php/php-custom.ini index 8b1d41b..afca10c 100644 --- a/Docker/php/php-custom.ini +++ b/Docker/php/php-custom.ini @@ -1,3 +1,8 @@ memory_limit = 1024M upload_max_filesize = 50M post_max_size = 50M + +; Log level +; Possible Values: alert, error, warning, notice, debug +; Default Value: notice +log_level = debug