소스 검색

Version bump to 30.0.1

Mark Shust 5 년 전
부모
커밋
6ca836d31d
3개의 변경된 파일19개의 추가작업 그리고 6개의 파일을 삭제
  1. 9 0
      CHANGELOG.md
  2. 4 2
      compose/docker-compose.dev.yml
  3. 6 4
      compose/docker-compose.yml

+ 9 - 0
CHANGELOG.md

@@ -9,6 +9,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
 N/A
 
 
+## [30.0.1] - 2020-03-18
+
+### Updated
+- Increased php.ini `memory_limit` to `4G` to get PHPUnit tests to pass
+- Increased php.ini `upload_max_filesize` and `post_max_size` to `100M` just to prevent issues from being filed in the future
+
+### Added
+- New PHP image tags `7.2-fpm-9`, `7.3-fpm-6`
+
 ## [30.0.0] - 2020-03-09
 
 ### Added

+ 4 - 2
compose/docker-compose.dev.yml

@@ -1,5 +1,7 @@
-# Mark Shust's Docker Configuration for Magento (https://github.com/markshust/docker-magento)
-# Version 30.0.0
+# Mark Shust's Docker Configuration for Magento
+# (https://github.com/markshust/docker-magento)
+#
+# Version 30.0.1
 
 version: "3"
 

+ 6 - 4
compose/docker-compose.yml

@@ -1,5 +1,7 @@
-# Mark Shust's Docker Configuration for Magento (https://github.com/markshust/docker-magento)
-# Version 30.0.0
+# Mark Shust's Docker Configuration for Magento
+# (https://github.com/markshust/docker-magento)
+#
+# Version 30.0.1
 
 version: "3"
 
@@ -19,7 +21,7 @@ services:
       - ssldata:/etc/nginx/certs
 
   phpfpm:
-    image: markoshust/magento-php:7.3-fpm-5
+    image: markoshust/magento-php:7.3-fpm-6
     links:
       - db
     volumes: *appvolumes
@@ -51,7 +53,7 @@ services:
 
   # Disabling cron by default as it uses higher CPU, enable if needed
   #cron:
-  #  image: markoshust/magento-php:7.3-fpm-5
+  #  image: markoshust/magento-php:7.3-fpm-6
   #  user: root
   #  command: /usr/local/bin/cronstart
   #  tty: true