浏览代码

Version bump on docker-compose files, 28.0.0

Mark Shust 5 年之前
父节点
当前提交
85f1a78e02
共有 3 个文件被更改,包括 12 次插入4 次删除
  1. 8 0
      CHANGELOG.md
  2. 1 1
      compose/docker-compose.dev.yml
  3. 3 3
      compose/docker-compose.yml

+ 8 - 0
CHANGELOG.md

@@ -8,6 +8,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
 
 N/A
 
+## [28.0.0] - 2020-01-31
+
+### Updated
+- Upgraded NodeJS to 10.x, as 8.x was failing to install npm due to source repository updates <a href="https://github.com/markshust/docker-magento/issues/210">#210</a>
+
+### Removed
+- Removed PHP 7.1 image from filesystem as it has been deprecated. If you need to reference the last version of these images, they are available at <a href="https://github.com/markshust/docker-magento/tree/27.2.0/images/php/7.1">https://github.com/markshust/docker-magento/tree/27.2.0/images/php/7.1</a>
+
 ## [27.2.0] - 2020-01-22
 
 ### Added

+ 1 - 1
compose/docker-compose.dev.yml

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

+ 3 - 3
compose/docker-compose.yml

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