Browse Source

Released 38.0.0

Mark Shust 3 năm trước cách đây
mục cha
commit
8c1084c782
3 tập tin đã thay đổi với 20 bổ sung10 xóa
  1. 10 0
      CHANGELOG.md
  2. 6 6
      compose/docker-compose.dev.yml
  3. 4 4
      compose/docker-compose.yml

+ 10 - 0
CHANGELOG.md

@@ -8,6 +8,16 @@ 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.
 
+## [38.0.0] - 2021-07-27
+
+### Added
+- Composer 2 support [#409](https://github.com/markshust/docker-magento/issues/409).
+
+### Fixed
+- Composer `auth.json` not properly set after installation [#42](https://github.com/markshust/docker-magento/issues/42).
+- `bin/remove` not removing containers in newer versions of Docker Compose.
+- Invalid template error with Docker 3.5.1 [#486](https://github.com/markshust/docker-magento/issues/486).
+
 ## [37.0.2] - 2021-02-17
 
 ### Added

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

@@ -1,14 +1,14 @@
 # Mark Shust's Docker Configuration for Magento
 # (https://github.com/markshust/docker-magento)
 #
-# Version 37.0.2
+# Version 38.0.0
 
 version: "3"
 
 services:
   app:
     volumes: &appvolumes
-      # Host mounts with performance penalty, only put what is necessary here
+      ## Host mounts with performance penalty, only put what is necessary here
       - ./src/app/code:/var/www/html/app/code:cached
       - ./src/app/design:/var/www/html/app/design:cached
       - ./src/app/etc:/var/www/html/app/etc:cached
@@ -20,14 +20,14 @@ services:
       #- ./src/patches:/var/www/html/patches:cached
       #- ./src/var/log:/var/www/html/var/log:cached
       #- ./src/var/report:/var/www/html/var/report:cached
-      # To sync your SSH to the container, uncomment the following line:
+      ## To sync your SSH to the container, uncomment the following line:
       #- ~/.ssh/id_rsa:/var/www/.ssh/id_rsa:cached
-      # Linux only: remove the above lines (except nginx.conf line) and mount the entire src directory with:
+      ## Linux only: remove the above lines (except nginx.conf line) and mount the entire src directory with:
       #- ./src:/var/www/html:cached
 
   phpfpm:
     volumes: *appvolumes
-    # Linux users, see https://github.com/markshust/docker-magento#linux for updates needed below
+    ## Linux users, see https://github.com/markshust/docker-magento#linux for updates needed below
     #extra_hosts:
     #  - "host.docker.internal:IP"
 
@@ -37,6 +37,6 @@ services:
       - "1025"
       - "8025:8025"
 
-  # Disabling cron by default as it uses higher CPU, enable if needed
+  ## Disabling cron by default as it uses higher CPU, enable if needed
   #cron:
   #  volumes: *appvolumes

+ 4 - 4
compose/docker-compose.yml

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