Mark Shust 5 лет назад
Родитель
Сommit
2586852802
3 измененных файлов с 9 добавлено и 4 удалено
  1. 5 0
      CHANGELOG.md
  2. 1 1
      compose/docker-compose.dev.yml
  3. 3 3
      compose/docker-compose.yml

+ 5 - 0
CHANGELOG.md

@@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
 
 N/A
 
+## [29.0.0] - 2020-01-31
+
+### Fixed
+- Fixed implementation of grunt. The grunt-cli is now installed globally on the image and doesn't depend on contents of the `vendor` directory.
+
 ## [28.0.0] - 2020-01-31
 
 ### Updated

+ 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 28.0.0
+# Version 29.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 28.0.0
+# Version 29.0.0
 
 version: "3"
 
@@ -19,7 +19,7 @@ services:
       - ssldata:/etc/nginx/certs
 
   phpfpm:
-    image: markoshust/magento-php:7.3-fpm-3
+    image: markoshust/magento-php:7.3-fpm-4
     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-3
+  #  image: markoshust/magento-php:7.3-fpm-4
   #  user: root
   #  command: /usr/local/bin/cronstart
   #  tty: true