2
0
Эх сурвалжийг харах

Increased php.ini memory_limit to get PHPUnit tests to pass

Mark Shust 5 жил өмнө
parent
commit
47df92008e

+ 4 - 2
README.md

@@ -94,14 +94,16 @@ View Dockerfiles:
       - [`1.13-0`](https://github.com/markshust/docker-magento/tree/11.0.0/images/nginx/1.13)
 - [markoshust/magento-php (Docker Hub)](https://hub.docker.com/r/markoshust/magento-php/)
   - 7.3
-      - [`latest`, `7.3-fpm`, `7.3-fpm-5`](https://github.com/markshust/docker-magento/tree/master/images/php/7.3)
+      - [`latest`, `7.3-fpm`, `7.3-fpm-6`](https://github.com/markshust/docker-magento/tree/master/images/php/7.3)
+      - [`7.3-fpm-5`](https://github.com/markshust/docker-magento/tree/30.0.0/images/php/7.3)
       - [`7.3-fpm-4`](https://github.com/markshust/docker-magento/tree/29.0.0/images/php/7.3)
       - [`7.3-fpm-3`](https://github.com/markshust/docker-magento/tree/28.0.0/images/php/7.3)
       - [`7.3-fpm-2`](https://github.com/markshust/docker-magento/tree/27.2.0/images/php/7.3)
       - [`7.3-fpm-1`](https://github.com/markshust/docker-magento/tree/26.0.0/images/php/7.3)
       - [`7.3-fpm-0`](https://github.com/markshust/docker-magento/tree/24.2.0/images/php/7.3)
   - 7.2
-      - [`7.2-fpm`, `7.2-fpm-8`](https://github.com/markshust/docker-magento/tree/master/images/php/7.2)
+      - [`7.2-fpm`, `7.2-fpm-9`](https://github.com/markshust/docker-magento/tree/master/images/php/7.2)
+      - [`7.2-fpm-8`](https://github.com/markshust/docker-magento/tree/30.0.0/images/php/7.2)
       - [`7.2-fpm-7`](https://github.com/markshust/docker-magento/tree/29.0.0/images/php/7.2)
       - [`7.2-fpm-6`](https://github.com/markshust/docker-magento/tree/28.0.0/images/php/7.2)
       - [`7.2-fpm-5`](https://github.com/markshust/docker-magento/tree/27.2.0/images/php/7.2)

+ 3 - 3
images/php/7.2/conf/php.ini

@@ -1,4 +1,4 @@
-memory_limit = 2G
+memory_limit = 4G
 max_execution_time = 1800
 zlib.output_compression = On
 cgi.fix_pathinfo = 0
@@ -10,8 +10,8 @@ xdebug.remote_host = host.docker.internal
 xdebug.remote_port = 9001
 xdebug.idekey = PHPSTORM
 
-upload_max_filesize = 20M
-post_max_size = 20M
+upload_max_filesize = 100M
+post_max_size = 100M
 max_input_vars = 10000
 
 sendmail_path = "/usr/local/bin/mhsendmail --smtp-addr=mailhog:1025"

+ 3 - 3
images/php/7.3/conf/php.ini

@@ -1,4 +1,4 @@
-memory_limit = 2G
+memory_limit = 4G
 max_execution_time = 1800
 zlib.output_compression = On
 cgi.fix_pathinfo = 0
@@ -10,8 +10,8 @@ xdebug.remote_host = host.docker.internal
 xdebug.remote_port = 9001
 xdebug.idekey = PHPSTORM
 
-upload_max_filesize = 20M
-post_max_size = 20M
+upload_max_filesize = 100M
+post_max_size = 100M
 max_input_vars = 10000
 
 sendmail_path = "/usr/local/bin/mhsendmail --smtp-addr=mailhog:1025"