소스 검색

Disable cron by default as it uses higher cpu

Mark Shust 6 년 전
부모
커밋
94ca5f854c
3개의 변경된 파일30개의 추가작업 그리고 27개의 파일을 삭제
  1. 10 9
      compose/magento-1/docker-compose.yml
  2. 10 9
      compose/magento-2-windows/docker-compose.yml
  3. 10 9
      compose/magento-2/docker-compose.yml

+ 10 - 9
compose/magento-1/docker-compose.yml

@@ -1,5 +1,5 @@
 # Mark Shust's Docker Configuration for Magento (https://github.com/markoshust/docker-magento)
-# Version 13.0.1
+# Version 13.0.2
 
 version: "3"
 
@@ -22,14 +22,15 @@ services:
       - db
     volumes: *appvolumes
 
-  cron:
-    image: markoshust/magento-php:5.6-fpm-3
-    user: root
-    command: /usr/local/bin/cronstart
-    tty: true
-    links:
-      - db
-    volumes: *appvolumes
+  # Disabling cron by default as it uses higher CPU, enable if needed
+  #cron:
+  #  image: markoshust/magento-php:5.6-fpm-3
+  #  user: root
+  #  command: /usr/local/bin/cronstart
+  #  tty: true
+  #  links:
+  #    - db
+  #  volumes: *appvolumes
 
   db:
     image: percona:5.7

+ 10 - 9
compose/magento-2-windows/docker-compose.yml

@@ -1,5 +1,5 @@
 # Mark Shust's Docker Configuration for Magento (https://github.com/markoshust/docker-magento)
-# Version 13.0.1
+# Version 13.0.2
 
 version: "3"
 
@@ -24,14 +24,15 @@ services:
       - db
     volumes: *appvolumes
 
-  cron:
-    image: markoshust/magento-php:7.1-fpm-3
-    user: root
-    command: /usr/local/bin/cronstart
-    tty: true
-    links:
-      - db
-    volumes: *appvolumes
+  # Disabling cron by default as it uses higher CPU, enable if needed
+  #cron:
+  #  image: markoshust/magento-php:7.1-fpm-3
+  #  user: root
+  #  command: /usr/local/bin/cronstart
+  #  tty: true
+  #  links:
+  #    - db
+  #  volumes: *appvolumes
 
   db:
     image: percona:5.7

+ 10 - 9
compose/magento-2/docker-compose.yml

@@ -1,5 +1,5 @@
 # Mark Shust's Docker Configuration for Magento (https://github.com/markoshust/docker-magento)
-# Version 13.0.1
+# Version 13.0.2
 
 version: "3"
 
@@ -23,14 +23,15 @@ services:
       - db
     volumes: *appvolumes
 
-  cron:
-    image: markoshust/magento-php:7.1-fpm-3
-    user: root
-    command: /usr/local/bin/cronstart
-    tty: true
-    links:
-      - db
-    volumes: *appvolumes
+  # Disabling cron by default as it uses higher CPU, enable if needed
+  #cron:
+  #  image: markoshust/magento-php:7.1-fpm-3
+  #  user: root
+  #  command: /usr/local/bin/cronstart
+  #  tty: true
+  #  links:
+  #    - db
+  #  volumes: *appvolumes
 
   db:
     image: percona:5.7