ソースを参照

Bump to 37.0.0 which references new PHP images

Mark Shust 4 年 前
コミット
0526280cb3
3 ファイル変更10 行追加4 行削除
  1. 6 0
      CHANGELOG.md
  2. 1 1
      compose/docker-compose.dev.yml
  3. 3 3
      compose/docker-compose.yml

+ 6 - 0
CHANGELOG.md

@@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
 
 - PHP image `8.0-fpm-develop` now available for testing purposes.
 
+## [37.0.0] - 2021-02-14
+
+### Added
+- Official support for Xdebug 3 [#390](https://github.com/markshust/docker-magento/issues/390). The new PHP images are `7.3-fpm-12` & `7.4-fpm-5`.
+- If you need to still use Xdebug 2, update your docker-compose.yml files to instead look at PHP image `7.3-fpm-11` or `7.4-fpm-4`. These images are exactly the same other than being pegged to Xdebug 2.
+
 ## [36.0.2] - 2021-02-14
 
 ### Updated

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

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

+ 3 - 3
compose/docker-compose.yml

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