@scandipwa/magento-scripts 2.0.3 → 2.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (347) hide show
  1. package/.eslintrc +6 -1
  2. package/exec.js +75 -39
  3. package/index.js +87 -46
  4. package/lib/commands/cleanup.js +18 -21
  5. package/lib/commands/cli.js +138 -73
  6. package/lib/commands/execute.js +5 -5
  7. package/lib/commands/import-db.js +21 -24
  8. package/lib/commands/link.js +17 -20
  9. package/lib/commands/logs.js +91 -91
  10. package/lib/commands/start.js +229 -191
  11. package/lib/commands/status.js +64 -50
  12. package/lib/commands/stop.js +14 -11
  13. package/lib/config/check-configuration-file.js +33 -28
  14. package/lib/config/cma-config.js +4 -4
  15. package/lib/config/config.js +40 -18
  16. package/lib/config/dependencies-for-platforms.js +33 -3
  17. package/lib/config/docker.js +259 -160
  18. package/lib/config/get-magento-version-config.js +45 -38
  19. package/lib/config/get-port-config.js +30 -44
  20. package/lib/config/get-project-configuration.js +8 -8
  21. package/lib/config/index.js +51 -42
  22. package/lib/config/magento/required-php-extensions/index.js +33 -19
  23. package/lib/config/magento/required-php-extensions/magento-2.3.js +2 -2
  24. package/lib/config/magento/required-php-extensions/magento-2.4.js +2 -2
  25. package/lib/config/magento-config.js +4 -4
  26. package/lib/config/php-config.js +8 -6
  27. package/lib/config/port-config.js +62 -43
  28. package/lib/config/save-config.js +6 -6
  29. package/lib/config/scandipwa-versions.js +2 -2
  30. package/lib/config/services/composer/versions/composer-1.js +2 -2
  31. package/lib/config/services/composer/versions/composer-2.js +2 -2
  32. package/lib/config/services/composer/versions/index.js +1 -1
  33. package/lib/config/services/elasticsearch/base-repo.js +1 -1
  34. package/lib/config/services/elasticsearch/default-es-env.js +4 -1
  35. package/lib/config/services/elasticsearch/versions/elasticsearch-6.8.js +17 -14
  36. package/lib/config/services/elasticsearch/versions/elasticsearch-7.10.js +4 -4
  37. package/lib/config/services/elasticsearch/versions/elasticsearch-7.12.js +4 -4
  38. package/lib/config/services/elasticsearch/versions/elasticsearch-7.16.js +4 -4
  39. package/lib/config/services/elasticsearch/versions/elasticsearch-7.17.js +4 -4
  40. package/lib/config/services/elasticsearch/versions/elasticsearch-7.6.js +4 -4
  41. package/lib/config/services/elasticsearch/versions/elasticsearch-7.7.js +4 -4
  42. package/lib/config/services/elasticsearch/versions/elasticsearch-7.9.js +4 -4
  43. package/lib/config/services/elasticsearch/versions/index.js +9 -9
  44. package/lib/config/services/maildev/index.js +5 -2
  45. package/lib/config/services/mariadb/versions/index.js +1 -1
  46. package/lib/config/services/mariadb/versions/mariadb-10.2.js +5 -4
  47. package/lib/config/services/mariadb/versions/mariadb-10.3.js +5 -4
  48. package/lib/config/services/mariadb/versions/mariadb-10.4.js +5 -4
  49. package/lib/config/services/nginx/versions/index.js +1 -1
  50. package/lib/config/services/nginx/versions/nginx-1.18.js +5 -4
  51. package/lib/config/services/php/base-repo.js +1 -1
  52. package/lib/config/services/php/extensions/apcu.js +3 -3
  53. package/lib/config/services/php/extensions/bcmath.js +2 -2
  54. package/lib/config/services/php/extensions/curl.js +3 -6
  55. package/lib/config/services/php/extensions/gd.js +4 -3
  56. package/lib/config/services/php/extensions/index.js +9 -8
  57. package/lib/config/services/php/extensions/intl.js +3 -5
  58. package/lib/config/services/php/extensions/opcache.js +3 -5
  59. package/lib/config/services/php/extensions/pdo_mysql.js +2 -2
  60. package/lib/config/services/php/extensions/soap.js +3 -5
  61. package/lib/config/services/php/extensions/sodium.js +3 -5
  62. package/lib/config/services/php/extensions/xdebug.js +5 -3
  63. package/lib/config/services/php/extensions/xsl.js +3 -5
  64. package/lib/config/services/php/extensions/zip.js +3 -5
  65. package/lib/config/services/php/versions/index.js +1 -1
  66. package/lib/config/services/php/versions/php-7.2.js +13 -9
  67. package/lib/config/services/php/versions/php-7.3.js +13 -9
  68. package/lib/config/services/php/versions/php-7.4.js +13 -9
  69. package/lib/config/services/php/versions/php-8.1.js +13 -9
  70. package/lib/config/services/redis/index.js +1 -1
  71. package/lib/config/services/redis/redis-5.0.js +2 -2
  72. package/lib/config/services/redis/redis-6.0.js +2 -2
  73. package/lib/config/services/redis/redis-6.2.js +2 -2
  74. package/lib/config/services/ssl-terminator/index.js +6 -5
  75. package/lib/config/services/varnish/index.js +1 -1
  76. package/lib/config/services/varnish/varnish-6-0.js +7 -5
  77. package/lib/config/services/varnish/varnish-6-6.js +7 -5
  78. package/lib/config/services/varnish/varnish-7-0.js +7 -5
  79. package/lib/config/system-config.js +55 -32
  80. package/lib/config/templates/mariadb.template.cnf +8 -0
  81. package/lib/config/versions/index.js +48 -27
  82. package/lib/config/versions/magento-2.2.10.js +22 -15
  83. package/lib/config/versions/magento-2.3.0.js +22 -15
  84. package/lib/config/versions/magento-2.3.1.js +22 -15
  85. package/lib/config/versions/magento-2.3.2-p1.js +22 -15
  86. package/lib/config/versions/magento-2.3.2-p2.js +22 -15
  87. package/lib/config/versions/magento-2.3.2.js +22 -15
  88. package/lib/config/versions/magento-2.3.3-p1.js +22 -15
  89. package/lib/config/versions/magento-2.3.3.js +22 -15
  90. package/lib/config/versions/magento-2.3.4-p1.js +22 -15
  91. package/lib/config/versions/magento-2.3.4-p2.js +22 -15
  92. package/lib/config/versions/magento-2.3.4.js +22 -15
  93. package/lib/config/versions/magento-2.3.5-p1.js +22 -15
  94. package/lib/config/versions/magento-2.3.5-p2.js +22 -15
  95. package/lib/config/versions/magento-2.3.5.js +27 -15
  96. package/lib/config/versions/magento-2.3.6-p1.js +22 -15
  97. package/lib/config/versions/magento-2.3.6.js +22 -15
  98. package/lib/config/versions/magento-2.3.7-p1.js +22 -15
  99. package/lib/config/versions/magento-2.3.7-p2.js +22 -15
  100. package/lib/config/versions/magento-2.3.7-p3.js +22 -15
  101. package/lib/config/versions/magento-2.3.7-p4.js +22 -15
  102. package/lib/config/versions/magento-2.3.7.js +22 -15
  103. package/lib/config/versions/magento-2.4.0-p1.js +22 -15
  104. package/lib/config/versions/magento-2.4.0.js +22 -15
  105. package/lib/config/versions/magento-2.4.1-p1.js +23 -16
  106. package/lib/config/versions/magento-2.4.1.js +23 -16
  107. package/lib/config/versions/magento-2.4.2-p1.js +23 -16
  108. package/lib/config/versions/magento-2.4.2-p2.js +23 -16
  109. package/lib/config/versions/magento-2.4.2.js +23 -16
  110. package/lib/config/versions/magento-2.4.3-p1.js +23 -16
  111. package/lib/config/versions/magento-2.4.3-p2.js +23 -16
  112. package/lib/config/versions/magento-2.4.3-p3.js +23 -16
  113. package/lib/config/versions/magento-2.4.3.js +23 -16
  114. package/lib/config/versions/magento-2.4.4-p1.js +23 -16
  115. package/lib/config/versions/magento-2.4.4-p2.js +23 -16
  116. package/lib/config/versions/magento-2.4.4.js +23 -16
  117. package/lib/config/versions/magento-2.4.5-p1.js +23 -16
  118. package/lib/config/versions/magento-2.4.5.js +23 -17
  119. package/lib/config/xml-parser.js +21 -20
  120. package/lib/errors/known-error.js +8 -6
  121. package/lib/errors/unknown-error.js +8 -6
  122. package/lib/tasks/cache/create-cache-folder.js +10 -10
  123. package/lib/tasks/cache/index.js +1 -1
  124. package/lib/tasks/cache/remove-cache-folder.js +9 -9
  125. package/lib/tasks/cleanup.js +22 -24
  126. package/lib/tasks/cli/create-bashrc-config.js +19 -11
  127. package/lib/tasks/cli/index.js +10 -13
  128. package/lib/tasks/composer/index.js +20 -15
  129. package/lib/tasks/composer/local-auth-json.js +32 -18
  130. package/lib/tasks/database/connect-to-database.js +71 -51
  131. package/lib/tasks/database/create-magento-database.js +7 -7
  132. package/lib/tasks/database/create-magento-user.js +33 -20
  133. package/lib/tasks/database/default-magento-database.js +1 -1
  134. package/lib/tasks/database/default-magento-user.js +2 -2
  135. package/lib/tasks/database/dump-theme-config.js +16 -12
  136. package/lib/tasks/database/fix-db.js +62 -52
  137. package/lib/tasks/database/import-dump-to-database.js +122 -85
  138. package/lib/tasks/database/import-remote-db/index.js +16 -18
  139. package/lib/tasks/database/import-remote-db/ssh/database-dump-command.js +2 -2
  140. package/lib/tasks/database/import-remote-db/ssh/index.js +34 -35
  141. package/lib/tasks/database/import-remote-db/ssh/readymage.js +41 -38
  142. package/lib/tasks/database/import-remote-db/ssh/regular-server.js +44 -46
  143. package/lib/tasks/database/index.js +1 -1
  144. package/lib/tasks/database/magento-tables.js +3 -3
  145. package/lib/tasks/database/restore-theme-config.js +26 -19
  146. package/lib/tasks/docker/api.d.ts +1 -1
  147. package/lib/tasks/docker/api.js +31 -33
  148. package/lib/tasks/docker/containers/container-api.d.ts +49 -14
  149. package/lib/tasks/docker/containers/container-api.js +112 -83
  150. package/lib/tasks/docker/containers/index.js +3 -3
  151. package/lib/tasks/docker/containers/tasks.js +171 -99
  152. package/lib/tasks/docker/convert-composer-home-to-composer-cache-volume.js +34 -25
  153. package/lib/tasks/docker/convert-legacy-volumes.js +91 -55
  154. package/lib/tasks/docker/convert-mysql-to-mariadb.js +178 -147
  155. package/lib/tasks/docker/image/image-api.d.ts +2 -3
  156. package/lib/tasks/docker/image/image-api.js +41 -34
  157. package/lib/tasks/docker/image/index.js +2 -2
  158. package/lib/tasks/docker/index.js +26 -21
  159. package/lib/tasks/docker/network/index.js +3 -3
  160. package/lib/tasks/docker/network/network-api.d.ts +11 -8
  161. package/lib/tasks/docker/network/network-api.js +53 -61
  162. package/lib/tasks/docker/network/tasks.js +41 -31
  163. package/lib/tasks/docker/project-image-builder.js +175 -92
  164. package/lib/tasks/docker/system/index.js +2 -2
  165. package/lib/tasks/docker/system/system-api.d.ts +2 -2
  166. package/lib/tasks/docker/system/system-api.js +16 -19
  167. package/lib/tasks/docker/volume/index.js +3 -3
  168. package/lib/tasks/docker/volume/tasks.js +63 -46
  169. package/lib/tasks/docker/volume/volume-api.d.ts +8 -5
  170. package/lib/tasks/docker/volume/volume-api.js +59 -76
  171. package/lib/tasks/execute.js +91 -55
  172. package/lib/tasks/file-system/create-mariadb-config.js +26 -11
  173. package/lib/tasks/file-system/create-nginx-config.js +18 -19
  174. package/lib/tasks/file-system/create-php-config.js +12 -8
  175. package/lib/tasks/file-system/create-php-debug-config.js +23 -18
  176. package/lib/tasks/file-system/create-php-fpm-config.js +14 -9
  177. package/lib/tasks/file-system/create-phpstorm-config/database-config.js +144 -112
  178. package/lib/tasks/file-system/create-phpstorm-config/eslint-config.js +69 -45
  179. package/lib/tasks/file-system/create-phpstorm-config/exclude-folder-config.js +69 -70
  180. package/lib/tasks/file-system/create-phpstorm-config/index.js +28 -24
  181. package/lib/tasks/file-system/create-phpstorm-config/inspection-tools-config/coding-standard-config.js +9 -9
  182. package/lib/tasks/file-system/create-phpstorm-config/inspection-tools-config/config.js +23 -23
  183. package/lib/tasks/file-system/create-phpstorm-config/inspection-tools-config/custom-ruleset-path-config.js +22 -19
  184. package/lib/tasks/file-system/create-phpstorm-config/inspection-tools-config/default-properties-config.js +26 -16
  185. package/lib/tasks/file-system/create-phpstorm-config/inspection-tools-config/eslint-inspection-config.js +14 -15
  186. package/lib/tasks/file-system/create-phpstorm-config/inspection-tools-config/index.js +43 -34
  187. package/lib/tasks/file-system/create-phpstorm-config/inspection-tools-config/inspection-tools-config.js +14 -6
  188. package/lib/tasks/file-system/create-phpstorm-config/inspection-tools-config/magento-coding-standard-config.js +9 -9
  189. package/lib/tasks/file-system/create-phpstorm-config/inspection-tools-config/mess-detector-validation-inspection-config.js +53 -47
  190. package/lib/tasks/file-system/create-phpstorm-config/inspection-tools-config/paths.js +41 -12
  191. package/lib/tasks/file-system/create-phpstorm-config/inspection-tools-config/php-cs-fixer-validation-inspection-config.js +33 -30
  192. package/lib/tasks/file-system/create-phpstorm-config/inspection-tools-config/php-cs-validation-inspection-config.js +35 -38
  193. package/lib/tasks/file-system/create-phpstorm-config/inspection-tools-config/stylelint-inspection-config.js +14 -15
  194. package/lib/tasks/file-system/create-phpstorm-config/keys.js +10 -10
  195. package/lib/tasks/file-system/create-phpstorm-config/php-config/index.js +33 -25
  196. package/lib/tasks/file-system/create-phpstorm-config/php-config/mess-detector-config.js +28 -25
  197. package/lib/tasks/file-system/create-phpstorm-config/php-config/php-code-sniffer-config.js +53 -32
  198. package/lib/tasks/file-system/create-phpstorm-config/php-config/php-config.js +7 -7
  199. package/lib/tasks/file-system/create-phpstorm-config/php-config/php-cs-fixer-config.js +37 -27
  200. package/lib/tasks/file-system/create-phpstorm-config/php-config/php-interpreters-config.js +53 -31
  201. package/lib/tasks/file-system/create-phpstorm-config/php-config/php-project-shared-configuration-config.js +42 -30
  202. package/lib/tasks/file-system/create-phpstorm-config/php-docker-settings-config/index.js +33 -20
  203. package/lib/tasks/file-system/create-phpstorm-config/php-docker-settings-config/php-docker-settings-config.js +3 -3
  204. package/lib/tasks/file-system/create-phpstorm-config/php-docker-settings-config/setup-php-docker-container-settings-config.js +27 -16
  205. package/lib/tasks/file-system/create-phpstorm-config/setup-xml-structure.js +14 -13
  206. package/lib/tasks/file-system/create-phpstorm-config/stylelint-config.js +52 -34
  207. package/lib/tasks/file-system/create-phpstorm-config/workspace-config/composer-settings-config.js +41 -33
  208. package/lib/tasks/file-system/create-phpstorm-config/workspace-config/format-setting-config.js +39 -27
  209. package/lib/tasks/file-system/create-phpstorm-config/workspace-config/index.js +34 -30
  210. package/lib/tasks/file-system/create-phpstorm-config/workspace-config/mess-detector-project-configuration-config.js +32 -22
  211. package/lib/tasks/file-system/create-phpstorm-config/workspace-config/php-code-sniffer-project-configuration-config.js +32 -22
  212. package/lib/tasks/file-system/create-phpstorm-config/workspace-config/php-cs-fixer-project-configuration-config.js +32 -22
  213. package/lib/tasks/file-system/create-phpstorm-config/workspace-config/php-debug-general-config.js +42 -31
  214. package/lib/tasks/file-system/create-phpstorm-config/workspace-config/php-server-config.js +45 -33
  215. package/lib/tasks/file-system/create-phpstorm-config/workspace-config/php-stan-project-configuration-config.js.js +32 -22
  216. package/lib/tasks/file-system/create-phpstorm-config/workspace-config/php-workspace-project-configuration-config.js +22 -19
  217. package/lib/tasks/file-system/create-phpstorm-config/workspace-config/properties-component-config.js +35 -21
  218. package/lib/tasks/file-system/create-phpstorm-config/workspace-config/psalm-project-configuration-config.js.js +31 -22
  219. package/lib/tasks/file-system/create-phpstorm-config/workspace-config/run-manager-config.js +38 -28
  220. package/lib/tasks/file-system/create-phpstorm-config/workspace-config/workspace-config.js +5 -5
  221. package/lib/tasks/file-system/create-phpstorm-config/xml-utils.js +3 -2
  222. package/lib/tasks/file-system/create-ssl-terminator-config.js +46 -34
  223. package/lib/tasks/file-system/create-varnish-config.js +20 -23
  224. package/lib/tasks/file-system/create-vscode-config.js +66 -49
  225. package/lib/tasks/file-system/index.js +29 -25
  226. package/lib/tasks/import-dump.js +54 -45
  227. package/lib/tasks/link.js +24 -23
  228. package/lib/tasks/magento/enable-magento-composer-plugins.js +213 -149
  229. package/lib/tasks/magento/index.js +1 -1
  230. package/lib/tasks/magento/install-magento-project.js +158 -97
  231. package/lib/tasks/magento/remove-magento.js +30 -24
  232. package/lib/tasks/magento/setup-magento/adjust-full-page-cache.js +27 -15
  233. package/lib/tasks/magento/setup-magento/configure-elasticsearch.js +23 -10
  234. package/lib/tasks/magento/setup-magento/create-admin.js +21 -13
  235. package/lib/tasks/magento/setup-magento/delete-admin-users.js +5 -5
  236. package/lib/tasks/magento/setup-magento/delete-customers.js +16 -10
  237. package/lib/tasks/magento/setup-magento/delete-orders.js +16 -10
  238. package/lib/tasks/magento/setup-magento/disable-2fa.js +11 -8
  239. package/lib/tasks/magento/setup-magento/disable-maintenance-mode.js +7 -7
  240. package/lib/tasks/magento/setup-magento/disable-page-builder.js +5 -4
  241. package/lib/tasks/magento/setup-magento/flush-redis-config.js +14 -8
  242. package/lib/tasks/magento/setup-magento/increase-admin-session-lifetime.js +21 -17
  243. package/lib/tasks/magento/setup-magento/index-products.js +4 -6
  244. package/lib/tasks/magento/setup-magento/index.js +54 -47
  245. package/lib/tasks/magento/setup-magento/install-magento.js +112 -79
  246. package/lib/tasks/magento/setup-magento/migrate-database.js +115 -96
  247. package/lib/tasks/magento/setup-magento/set-base-url.js +35 -21
  248. package/lib/tasks/magento/setup-magento/set-deployment-mode.js +15 -13
  249. package/lib/tasks/magento/setup-magento/set-mail-config.js +20 -14
  250. package/lib/tasks/magento/setup-magento/set-url-rewrite.js +13 -9
  251. package/lib/tasks/magento/setup-magento/upgrade-magento.js +30 -22
  252. package/lib/tasks/magento/setup-magento/urn-highlighter.js +11 -11
  253. package/lib/tasks/magento/setup-magento/varnish-config.js +42 -32
  254. package/lib/tasks/magento/setup-magento/waiting-for-redis.js +6 -8
  255. package/lib/tasks/magento/setup-magento/waiting-for-varnish.js +108 -65
  256. package/lib/tasks/magento/uninstall-magento.js +19 -16
  257. package/lib/tasks/php/php-container.d.ts +19 -0
  258. package/lib/tasks/php/php-container.js +50 -46
  259. package/lib/tasks/php/update-env-php.js +50 -30
  260. package/lib/tasks/project-config/index.js +12 -8
  261. package/lib/tasks/requirements/composer-credentials.js +215 -112
  262. package/lib/tasks/requirements/docker/context.js +49 -37
  263. package/lib/tasks/requirements/docker/index.js +123 -89
  264. package/lib/tasks/requirements/docker/install-on-mac.js +21 -14
  265. package/lib/tasks/requirements/docker/install.js +63 -52
  266. package/lib/tasks/requirements/docker/performance.js +39 -24
  267. package/lib/tasks/requirements/docker/permissions.js +27 -17
  268. package/lib/tasks/requirements/docker/running-status.js +79 -66
  269. package/lib/tasks/requirements/docker/version.js +15 -11
  270. package/lib/tasks/requirements/index.js +33 -29
  271. package/lib/tasks/requirements/node-version.js +8 -8
  272. package/lib/tasks/requirements/php-version.js +14 -11
  273. package/lib/tasks/requirements/platform.js +42 -26
  274. package/lib/tasks/requirements/rosetta.js +15 -12
  275. package/lib/tasks/start.js +172 -148
  276. package/lib/tasks/status/index.js +155 -88
  277. package/lib/tasks/stop.js +22 -18
  278. package/lib/tasks/theme/build-theme.js +50 -33
  279. package/lib/tasks/theme/install-theme.js +31 -18
  280. package/lib/tasks/theme/link-theme.js +27 -21
  281. package/lib/tasks/theme/retrieve-theme-data.js +24 -18
  282. package/lib/tasks/theme/setup-themes.js +87 -59
  283. package/lib/tasks/theme/symlink-theme.js +44 -22
  284. package/lib/util/CSA-theme.js +23 -21
  285. package/lib/util/analytics.js +130 -75
  286. package/lib/util/arch.js +22 -18
  287. package/lib/util/clean-object.js +15 -10
  288. package/lib/util/config-file-validator.js +74 -55
  289. package/lib/util/config-php-json.js +34 -16
  290. package/lib/util/connection-string.js +41 -27
  291. package/lib/util/console-block.js +112 -65
  292. package/lib/util/database.js +56 -33
  293. package/lib/util/deepmerge.d.ts +1 -1
  294. package/lib/util/deepmerge.js +19 -28
  295. package/lib/util/dockerfile-builder/build-instructions.js +159 -143
  296. package/lib/util/dockerfile-builder/index.js +47 -73
  297. package/lib/util/dockerfile-builder/types.d.ts +2 -1
  298. package/lib/util/download-file.js +28 -16
  299. package/lib/util/env-php-json.js +42 -16
  300. package/lib/util/exec-async-command.d.ts +9 -9
  301. package/lib/util/exec-async-command.js +82 -59
  302. package/lib/util/exec-async.d.ts +2 -0
  303. package/lib/util/exec-async.js +12 -5
  304. package/lib/util/execute-in-container.js +22 -27
  305. package/lib/util/execute-sudo-command.js +11 -15
  306. package/lib/util/get-brew-bin-path.js +27 -23
  307. package/lib/util/get-installed-magento-version.js +22 -16
  308. package/lib/util/get-jsonfile-data.js +14 -9
  309. package/lib/util/install-dependencies-task.js +53 -41
  310. package/lib/util/instance-metadata.js +44 -29
  311. package/lib/util/ip.js +16 -12
  312. package/lib/util/is-running-root.js +6 -3
  313. package/lib/util/is-wsl.js +10 -10
  314. package/lib/util/macos-version.js +12 -11
  315. package/lib/util/magento-task.js +14 -9
  316. package/lib/util/match-filesystem.js +22 -16
  317. package/lib/util/move-file.js +40 -25
  318. package/lib/util/nginx-logs-parser.js +50 -39
  319. package/lib/util/open-browser.js +10 -5
  320. package/lib/util/os-platform.js +40 -32
  321. package/lib/util/path-exists-sync.js +10 -6
  322. package/lib/util/path-exists.js +6 -6
  323. package/lib/util/php-task.js +11 -10
  324. package/lib/util/portscanner.js +97 -85
  325. package/lib/util/prefix.js +31 -22
  326. package/lib/util/resolve-configuration-with-overrides.js +30 -15
  327. package/lib/util/rmdir-safe.js +15 -11
  328. package/lib/util/run-composer.js +16 -16
  329. package/lib/util/run-container-image.js +9 -4
  330. package/lib/util/run-magento.js +16 -17
  331. package/lib/util/run-php.js +16 -21
  332. package/lib/util/safe-regex-extract.js +8 -12
  333. package/lib/util/set-config.js +24 -15
  334. package/lib/util/sleep.js +7 -2
  335. package/lib/util/systemctl.js +62 -44
  336. package/lib/util/wait-for-it.js +42 -33
  337. package/lib/util/wait-for-logs.js +42 -35
  338. package/lib/util/xdg-open-exists.js +19 -19
  339. package/package.json +7 -3
  340. package/tsconfig.json +24 -0
  341. package/typings/context.d.ts +76 -34
  342. package/typings/index.d.ts +54 -20
  343. package/typings/override.d.ts +14 -0
  344. package/typings/phpstorm.d.ts +19 -19
  345. package/.prettierrc +0 -3
  346. package/lib/util/get-php-for-phpbrew.js +0 -30
  347. package/lib/util/request.js +0 -0
@@ -1,68 +1,56 @@
1
- const os = require('os');
2
- const path = require('path');
3
- const getPhpConfig = require('./php-config');
4
- const { isIpAddress } = require('../util/ip');
1
+ const os = require('os')
2
+ const path = require('path')
3
+ const getPhpConfig = require('./php-config')
4
+ const { isIpAddress } = require('../util/ip')
5
5
 
6
- const systeminformation = require('systeminformation');
7
- const { deepmerge } = require('../util/deepmerge');
8
- const defaultEsEnv = require('./services/elasticsearch/default-es-env');
9
- const logger = require('@scandipwa/scandipwa-dev-utils/logger');
10
- const defaultMagentoUser = require('../tasks/database/default-magento-user');
6
+ const systeminformation = require('systeminformation')
7
+ const { deepmerge } = require('../util/deepmerge')
8
+ const defaultEsEnv = require('./services/elasticsearch/default-es-env')
9
+ const logger = require('@scandipwa/scandipwa-dev-utils/logger')
10
+ const defaultMagentoUser = require('../tasks/database/default-magento-user')
11
11
 
12
12
  /**
13
13
  *
14
14
  * @param {import('../../typings/context').ListrContext} ctx
15
15
  * @param {import('../../typings/context').ListrContext['config']['overridenConfiguration']} overridenConfiguration
16
16
  * @param {import('../../typings/context').ListrContext['config']['baseConfig']} baseConfig
17
- * @returns
18
17
  */
19
18
  module.exports = async (ctx, overridenConfiguration, baseConfig) => {
20
- const { configuration, ssl, host } = overridenConfiguration;
21
- const {
22
- nginx,
23
- redis,
24
- elasticsearch,
25
- mariadb,
26
- varnish,
27
- maildev
28
- } = configuration;
19
+ const { configuration, ssl, host } = overridenConfiguration
20
+ const { nginx, redis, elasticsearch, mariadb, varnish, maildev } =
21
+ configuration
29
22
 
30
- const php = getPhpConfig(overridenConfiguration, baseConfig);
31
- const {
32
- prefix,
33
- magentoDir,
34
- containerMagentoDir,
35
- cacheDir
36
- } = baseConfig;
23
+ const php = getPhpConfig(overridenConfiguration, baseConfig)
24
+ const { prefix, magentoDir, containerMagentoDir, cacheDir } = baseConfig
37
25
 
38
- const cpuSupportedFlags = (await systeminformation.cpuFlags()).split(' ');
26
+ const cpuSupportedFlags = (await systeminformation.cpuFlags()).split(' ')
39
27
 
40
28
  const network = {
41
- name: `${ prefix }_network`
42
- };
29
+ name: `${prefix}_network`
30
+ }
43
31
 
32
+ /**
33
+ * @type {Record<string, { name: string, driver?: string, opt?: { mode?: string, device?: string, o?: string, type?: string } }>}
34
+ */
44
35
  const volumes = {
45
36
  mariadb: {
46
- name: `${ prefix }_mariadb-data`
37
+ name: `${prefix}_mariadb-data`
47
38
  },
48
39
  redis: {
49
- name: `${ prefix }_redis-data`
40
+ name: `${prefix}_redis-data`
50
41
  },
51
42
  elasticsearch: {
52
- name: `${ prefix }_elasticsearch-data`
43
+ name: `${prefix}_elasticsearch-data`
53
44
  },
54
45
  maildev: {
55
- name: `${ prefix }_maildev-data`
46
+ name: `${prefix}_maildev-data`
56
47
  },
57
48
  composer_cache: {
58
- name: 'composer_cache-data',
59
- opts: {
60
- mode: 'z'
61
- }
49
+ name: 'composer_cache-data'
62
50
  }
63
- };
51
+ }
64
52
 
65
- const { isDockerDesktop } = ctx;
53
+ const { isDockerDesktop } = ctx
66
54
 
67
55
  if (isDockerDesktop) {
68
56
  /**
@@ -70,109 +58,138 @@ module.exports = async (ctx, overridenConfiguration, baseConfig) => {
70
58
  * we need create named volumes to avoid performance penalty
71
59
  */
72
60
  volumes.php = {
73
- name: `${ prefix }_project-data`,
61
+ name: `${prefix}_project-data`,
74
62
  driver: 'local',
75
63
  opt: {
76
64
  type: 'none',
77
65
  device: path.join(magentoDir),
78
66
  o: 'bind'
79
67
  }
80
- };
68
+ }
81
69
  volumes.nginx = {
82
- name: `${ prefix }_nginx-data`,
70
+ name: `${prefix}_nginx-data`,
83
71
  driver: 'local',
84
72
  opt: {
85
73
  type: 'none',
86
74
  device: path.join(cacheDir, 'nginx', 'conf.d'),
87
75
  o: 'bind'
88
76
  }
89
- };
77
+ }
90
78
  volumes.appPub = {
91
- name: `${ prefix }_pub-data`,
79
+ name: `${prefix}_pub-data`,
92
80
  driver: 'local',
93
81
  opt: {
94
82
  type: 'none',
95
83
  device: path.join(magentoDir, 'pub'),
96
84
  o: 'bind'
97
85
  }
98
- };
86
+ }
99
87
  volumes.appSetup = {
100
- name: `${ prefix }_setup-data`,
88
+ name: `${prefix}_setup-data`,
101
89
  driver: 'local',
102
90
  opt: {
103
91
  type: 'none',
104
92
  device: path.join(magentoDir, 'setup'),
105
93
  o: 'bind'
106
94
  }
107
- };
95
+ }
108
96
  volumes.sslTerminator = {
109
- name: `${ prefix }_ssl-terminator-data`,
97
+ name: `${prefix}_ssl-terminator-data`,
110
98
  driver: 'local',
111
99
  opt: {
112
100
  type: 'none',
113
101
  device: path.join(cacheDir, 'ssl-terminator', 'conf.d'),
114
102
  o: 'bind'
115
103
  }
116
- };
104
+ }
117
105
 
118
106
  if (varnish.enabled) {
119
107
  volumes.varnish = {
120
- name: `${ prefix }_varnish-data`,
108
+ name: `${prefix}_varnish-data`,
121
109
  driver: 'local',
122
110
  opt: {
123
111
  type: 'none',
124
112
  device: path.join(cacheDir, 'varnish'),
125
113
  o: 'bind'
126
114
  }
127
- };
115
+ }
128
116
  }
129
117
  }
130
118
 
119
+ /**
120
+ * @param {Record<string, number>} ports
121
+ */
131
122
  const getContainers = (ports = {}) => {
132
123
  /**
133
- * @type {Record<string, import('../tasks/docker/containers/container-api').ContainerRunOptions>}
124
+ * @type {Record<string, import('../tasks/docker/containers/container-api').ContainerRunOptions & { _?: string, forwardedPorts?: string[], debugImage?: string, remoteImages?: string[], connectCommand?: string[], description?: string }>}
134
125
  */
135
126
  const dockerConfig = {
136
127
  php: {
137
128
  _: 'PHP',
138
- ports: isDockerDesktop ? [
139
- `${ isIpAddress(host) ? host : '127.0.0.1' }:${ ports.fpm }:9000`
140
- ] : [],
129
+ ports: isDockerDesktop
130
+ ? [
131
+ `${isIpAddress(host) ? host : '127.0.0.1'}:${
132
+ ports.fpm
133
+ }:9000`
134
+ ]
135
+ : [],
141
136
  forwardedPorts: [
142
137
  isDockerDesktop
143
- ? `127.0.0.1:${ ports.fpm }:9000`
144
- : `127.0.0.1:${ ports.fpm }`
138
+ ? `127.0.0.1:${ports.fpm}:9000`
139
+ : `127.0.0.1:${ports.fpm}`
145
140
  ],
146
141
  network: isDockerDesktop ? network.name : 'host',
147
142
  mountVolumes: [
148
- `${ !isDockerDesktop ? magentoDir : volumes.php.name }:${containerMagentoDir}`,
149
- `${ volumes.composer_cache.name }:/composer/home/cache`,
150
- `${ php.iniPath }:/usr/local/etc/php/php.ini`,
151
- `${ php.fpmConfPath }:/usr/local/etc/php-fpm.d/zz-docker.conf`
152
- ].concat(ctx.debug ? [`${ php.debugIniPath }:/usr/local/etc/php/conf.d/00-xdebug.ini`] : []),
153
- env: {
154
- COMPOSER_AUTH: JSON.stringify(JSON.parse(process.env.COMPOSER_AUTH), null, 0) || ''
155
- },
143
+ `${
144
+ !isDockerDesktop ? magentoDir : volumes.php.name
145
+ }:${containerMagentoDir}`,
146
+ `${volumes.composer_cache.name}:/composer/home/cache`,
147
+ `${php.iniPath}:/usr/local/etc/php/php.ini`,
148
+ `${php.fpmConfPath}:/usr/local/etc/php-fpm.d/zz-docker.conf`
149
+ ].concat(
150
+ ctx.debug
151
+ ? [
152
+ `${php.debugIniPath}:/usr/local/etc/php/conf.d/00-xdebug.ini`
153
+ ]
154
+ : []
155
+ ),
156
+ env: process.env.COMPOSER_AUTH
157
+ ? {
158
+ COMPOSER_AUTH: JSON.stringify(
159
+ JSON.parse(process.env.COMPOSER_AUTH),
160
+ null,
161
+ 0
162
+ )
163
+ }
164
+ : {},
156
165
  restart: 'on-failure:5',
157
- image: `local-cma-project:${ prefix }`,
158
- debugImage: `local-cma-project:${ prefix }.debug`,
166
+ image: `local-cma-project:${prefix}`,
167
+ debugImage: `local-cma-project:${prefix}.debug`,
159
168
  remoteImages: [
160
169
  configuration.php.baseImage,
161
170
  configuration.php.debugImage
162
171
  ],
163
- name: `${ prefix }_php`,
172
+ name: `${prefix}_php`,
164
173
  connectCommand: ['/bin/sh'],
165
- user: ((ctx.platform === 'linux' && isDockerDesktop) || !isDockerDesktop) ? `${os.userInfo().uid}:${os.userInfo().gid}` : ''
174
+ user:
175
+ (ctx.platform === 'linux' && isDockerDesktop) ||
176
+ !isDockerDesktop
177
+ ? `${os.userInfo().uid}:${os.userInfo().gid}`
178
+ : ''
166
179
  },
167
180
  sslTerminator: {
168
181
  _: 'SSL Terminator (Nginx)',
169
- ports: isDockerDesktop ? [
170
- `${ isIpAddress(host) ? host : '127.0.0.1' }:${ ports.sslTerminator }:80`
171
- ] : [],
182
+ ports: isDockerDesktop
183
+ ? [
184
+ `${isIpAddress(host) ? host : '127.0.0.1'}:${
185
+ ports.sslTerminator
186
+ }:80`
187
+ ]
188
+ : [],
172
189
  forwardedPorts: [
173
190
  isDockerDesktop
174
- ? `127.0.0.1:${ ports.sslTerminator }:80`
175
- : `127.0.0.1:${ ports.sslTerminator }`
191
+ ? `127.0.0.1:${ports.sslTerminator}:80`
192
+ : `127.0.0.1:${ports.sslTerminator}`
176
193
  ],
177
194
  healthCheck: {
178
195
  cmd: 'service nginx status'
@@ -181,24 +198,38 @@ module.exports = async (ctx, overridenConfiguration, baseConfig) => {
181
198
  * Mount volumes directly on linux
182
199
  */
183
200
  mountVolumes: [
184
- `${ !isDockerDesktop ? path.join(cacheDir, 'ssl-terminator', 'conf.d') : volumes.sslTerminator.name }:/etc/nginx/conf.d`,
185
- `${ path.join(cacheDir, 'ssl-terminator', 'fastcgi_params') }:/etc/nginx/fastcgi_params`
201
+ `${
202
+ !isDockerDesktop
203
+ ? path.join(cacheDir, 'ssl-terminator', 'conf.d')
204
+ : volumes.sslTerminator.name
205
+ }:/etc/nginx/conf.d`,
206
+ `${path.join(
207
+ cacheDir,
208
+ 'ssl-terminator',
209
+ 'fastcgi_params'
210
+ )}:/etc/nginx/fastcgi_params`
186
211
  ],
187
212
  restart: 'on-failure:5',
188
213
  network: isDockerDesktop ? network.name : 'host',
189
- image: `${ nginx.version ? `nginx:${ nginx.version }` : nginx.image }`,
190
- name: `${ prefix }_ssl-terminator`,
214
+ image: `${
215
+ nginx.version ? `nginx:${nginx.version}` : nginx.image
216
+ }`,
217
+ name: `${prefix}_ssl-terminator`,
191
218
  command: "nginx -g 'daemon off;'"
192
219
  },
193
220
  nginx: {
194
221
  _: 'Nginx',
195
- ports: isDockerDesktop ? [
196
- `${ isIpAddress(host) ? host : '127.0.0.1' }:${ ports.app }:80`
197
- ] : [],
222
+ ports: isDockerDesktop
223
+ ? [
224
+ `${isIpAddress(host) ? host : '127.0.0.1'}:${
225
+ ports.app
226
+ }:80`
227
+ ]
228
+ : [],
198
229
  forwardedPorts: [
199
230
  isDockerDesktop
200
- ? `127.0.0.1:${ ports.app }:80`
201
- : `127.0.0.1:${ ports.app }`
231
+ ? `127.0.0.1:${ports.app}:80`
232
+ : `127.0.0.1:${ports.app}`
202
233
  ],
203
234
  healthCheck: {
204
235
  cmd: 'service nginx status'
@@ -206,21 +237,45 @@ module.exports = async (ctx, overridenConfiguration, baseConfig) => {
206
237
  /**
207
238
  * Mount volumes directly on linux
208
239
  */
209
- mountVolumes: !isDockerDesktop ? [
210
- `${ cacheDir }/nginx/conf.d:/etc/nginx/conf.d`,
211
- `${ path.join(magentoDir, 'pub') }:${path.join(containerMagentoDir, 'pub')}`,
212
- `${ path.join(magentoDir, 'setup') }:${path.join(containerMagentoDir, 'setup')}`,
213
- `${ path.join(cacheDir, 'ssl-terminator', 'fastcgi_params') }:/etc/nginx/fastcgi_params`
214
- ] : [
215
- `${ volumes.nginx.name }:/etc/nginx/conf.d`,
216
- `${ volumes.appPub.name }:${path.join(containerMagentoDir, 'pub')}`,
217
- `${ volumes.appSetup.name }:${path.join(containerMagentoDir, 'setup')}`,
218
- `${ path.join(cacheDir, 'ssl-terminator', 'fastcgi_params') }:/etc/nginx/fastcgi_params`
219
- ],
240
+ mountVolumes: !isDockerDesktop
241
+ ? [
242
+ `${cacheDir}/nginx/conf.d:/etc/nginx/conf.d`,
243
+ `${path.join(magentoDir, 'pub')}:${path.join(
244
+ containerMagentoDir,
245
+ 'pub'
246
+ )}`,
247
+ `${path.join(magentoDir, 'setup')}:${path.join(
248
+ containerMagentoDir,
249
+ 'setup'
250
+ )}`,
251
+ `${path.join(
252
+ cacheDir,
253
+ 'ssl-terminator',
254
+ 'fastcgi_params'
255
+ )}:/etc/nginx/fastcgi_params`
256
+ ]
257
+ : [
258
+ `${volumes.nginx.name}:/etc/nginx/conf.d`,
259
+ `${volumes.appPub.name}:${path.join(
260
+ containerMagentoDir,
261
+ 'pub'
262
+ )}`,
263
+ `${volumes.appSetup.name}:${path.join(
264
+ containerMagentoDir,
265
+ 'setup'
266
+ )}`,
267
+ `${path.join(
268
+ cacheDir,
269
+ 'ssl-terminator',
270
+ 'fastcgi_params'
271
+ )}:/etc/nginx/fastcgi_params`
272
+ ],
220
273
  restart: 'on-failure:5',
221
274
  network: isDockerDesktop ? network.name : 'host',
222
- image: `${ nginx.version ? `nginx:${ nginx.version }` : nginx.image }`,
223
- name: `${ prefix }_nginx`,
275
+ image: `${
276
+ nginx.version ? `nginx:${nginx.version}` : nginx.image
277
+ }`,
278
+ name: `${prefix}_nginx`,
224
279
  command: "nginx -g 'daemon off;'"
225
280
  },
226
281
  redis: {
@@ -228,12 +283,14 @@ module.exports = async (ctx, overridenConfiguration, baseConfig) => {
228
283
  healthCheck: {
229
284
  cmd: 'redis-cli ping'
230
285
  },
231
- ports: [`127.0.0.1:${ ports.redis }:6379`],
232
- forwardedPorts: [`127.0.0.1:${ ports.redis }:6379`],
233
- mounts: [`source=${ volumes.redis.name },target=/data`],
286
+ ports: [`127.0.0.1:${ports.redis}:6379`],
287
+ forwardedPorts: [`127.0.0.1:${ports.redis}:6379`],
288
+ mounts: [`source=${volumes.redis.name},target=/data`],
234
289
  network: network.name,
235
- image: `${ redis.version ? `redis:${ redis.version }` : redis.image }`,
236
- name: `${ prefix }_redis`,
290
+ image: `${
291
+ redis.version ? `redis:${redis.version}` : redis.image
292
+ }`,
293
+ name: `${prefix}_redis`,
237
294
  connectCommand: ['redis-cli']
238
295
  },
239
296
  mariadb: {
@@ -241,118 +298,160 @@ module.exports = async (ctx, overridenConfiguration, baseConfig) => {
241
298
  healthCheck: {
242
299
  cmd: 'mysqladmin ping --silent'
243
300
  },
244
- ports: [`127.0.0.1:${ ports.mariadb }:3306`],
245
- forwardedPorts: [`127.0.0.1:${ ports.mariadb }:3306`],
301
+ ports: [`127.0.0.1:${ports.mariadb}:3306`],
302
+ forwardedPorts: [`127.0.0.1:${ports.mariadb}:3306`],
246
303
  mountVolumes: [
247
- `${ volumes.mariadb.name }:/var/lib/mysql`,
248
- `${ path.join(baseConfig.cacheDir, 'mariadb.cnf') }:/etc/mysql/my.cnf`
304
+ `${volumes.mariadb.name}:/var/lib/mysql`,
305
+ `${path.join(
306
+ baseConfig.cacheDir,
307
+ 'mariadb.cnf'
308
+ )}:/etc/mysql/my.cnf`
249
309
  ],
250
310
  env: {
251
311
  MARIADB_ROOT_PASSWORD: 'scandipwa'
252
312
  },
253
313
  command: '--log_bin_trust_function_creators=1',
254
- securityOptions: [
255
- 'seccomp=unconfined'
256
- ],
314
+ securityOptions: ['seccomp=unconfined'],
257
315
  network: network.name,
258
- image: `${ mariadb.version ? `mariadb:${ mariadb.version }` : mariadb.image }`,
259
- name: `${ prefix }_mariadb`,
316
+ image: `${
317
+ mariadb.version
318
+ ? `mariadb:${mariadb.version}`
319
+ : mariadb.image
320
+ }`,
321
+ name: `${prefix}_mariadb`,
260
322
  description: `To connect to MariaDB you can use the following users:
261
- - User ${ logger.style.command('root') } with password ${ logger.style.command('scandipwa') }
262
- - User ${ logger.style.command(defaultMagentoUser.user) } with password ${ logger.style.command(defaultMagentoUser.password) }`
323
+ - User ${logger.style.command('root')} with password ${logger.style.command(
324
+ 'scandipwa'
325
+ )}
326
+ - User ${logger.style.command(
327
+ defaultMagentoUser.user
328
+ )} with password ${logger.style.command(
329
+ defaultMagentoUser.password
330
+ )}`
263
331
  },
264
332
  elasticsearch: {
265
333
  _: 'ElasticSearch',
266
334
  healthCheck: {
267
335
  cmd: 'curl --silent --fail localhost:9200/_cluster/health || exit 1'
268
336
  },
269
- ports: [`127.0.0.1:${ ports.elasticsearch }:9200`],
270
- forwardedPorts: [`127.0.0.1:${ ports.elasticsearch }:9200`],
271
- mounts: [`source=${ volumes.elasticsearch.name },target=/usr/share/elasticsearch/data`],
337
+ ports: [`127.0.0.1:${ports.elasticsearch}:9200`],
338
+ forwardedPorts: [`127.0.0.1:${ports.elasticsearch}:9200`],
339
+ mounts: [
340
+ `source=${volumes.elasticsearch.name},target=/usr/share/elasticsearch/data`
341
+ ],
272
342
  env: deepmerge(
273
343
  {
274
- // https://www.elastic.co/guide/en/elasticsearch/reference/master/ml-settings.html
275
- 'xpack.ml.enabled': ['sse4.2', 'sse4_2'].some((sse42Flag) => cpuSupportedFlags.includes(sse42Flag))
276
- }, elasticsearch.env || defaultEsEnv
344
+ // https://www.elastic.co/guide/en/elasticsearch/reference/master/ml-settings.html
345
+ 'xpack.ml.enabled': ['sse4.2', 'sse4_2'].some(
346
+ (sse42Flag) => cpuSupportedFlags.includes(sse42Flag)
347
+ )
348
+ },
349
+ elasticsearch.env || defaultEsEnv
277
350
  ),
278
351
  network: network.name,
279
- image: `${ elasticsearch.version ? `elasticsearch:${ elasticsearch.version }` : elasticsearch.image }`,
280
- name: `${ prefix }_elasticsearch`
352
+ image: `${
353
+ elasticsearch.version
354
+ ? `elasticsearch:${elasticsearch.version}`
355
+ : elasticsearch.image
356
+ }`,
357
+ name: `${prefix}_elasticsearch`
281
358
  },
282
359
  maildev: {
283
360
  _: 'MailDev',
284
- ports: isDockerDesktop ? [
285
- `127.0.0.1:${ ports.maildevWeb }:1080`,
286
- `127.0.0.1:${ ports.maildevSMTP }:1025`
287
- ] : [],
288
- forwardedPorts: isDockerDesktop ? [
289
- `127.0.0.1:${ ports.maildevWeb }:1080`,
290
- `127.0.0.1:${ ports.maildevSMTP }:1025`
291
- ] : [
292
- `127.0.0.1:${ ports.maildevWeb }`,
293
- `127.0.0.1:${ ports.maildevSMTP }`
294
- ],
295
- mountVolumes: [
296
- `${ volumes.maildev.name }:/tmp/maildev`
297
- ],
361
+ ports: isDockerDesktop
362
+ ? [
363
+ `127.0.0.1:${ports.maildevWeb}:1080`,
364
+ `127.0.0.1:${ports.maildevSMTP}:1025`
365
+ ]
366
+ : [],
367
+ forwardedPorts: isDockerDesktop
368
+ ? [
369
+ `127.0.0.1:${ports.maildevWeb}:1080`,
370
+ `127.0.0.1:${ports.maildevSMTP}:1025`
371
+ ]
372
+ : [
373
+ `127.0.0.1:${ports.maildevWeb}`,
374
+ `127.0.0.1:${ports.maildevSMTP}`
375
+ ],
376
+ mountVolumes: [`${volumes.maildev.name}:/tmp/maildev`],
298
377
  env: {
299
- MAILDEV_SMTP_PORT: isDockerDesktop ? '1025' : ports.maildevSMTP,
300
- MAILDEV_WEB_PORT: isDockerDesktop ? '1080' : ports.maildevWeb,
378
+ MAILDEV_SMTP_PORT: isDockerDesktop
379
+ ? '1025'
380
+ : ports.maildevSMTP,
381
+ MAILDEV_WEB_PORT: isDockerDesktop
382
+ ? '1080'
383
+ : ports.maildevWeb,
301
384
  MAILDEV_MAIL_DIRECTORY: '/tmp/maildev'
302
385
  },
303
- name: `${ prefix }_maildev`,
386
+ name: `${prefix}_maildev`,
304
387
  network: isDockerDesktop ? network.name : 'host',
305
388
  image: maildev.image,
306
389
  user: !isDockerDesktop ? 'root:root' : '',
307
390
  connectCommand: ['/bin/sh'],
308
391
  healthCheck: {
309
- cmd: `wget -O - http://127.0.0.1:${ isDockerDesktop ? '1080' : ports.maildevWeb }/healthz || exit 1`
392
+ cmd: `wget -O - http://127.0.0.1:${
393
+ isDockerDesktop ? '1080' : ports.maildevWeb
394
+ }/healthz || exit 1`
310
395
  }
311
396
  }
312
- };
397
+ }
313
398
 
314
- if (ssl.enabled && isDockerDesktop) {
399
+ if (ssl && ssl.enabled && isDockerDesktop) {
315
400
  dockerConfig.sslTerminator.ports.push(
316
401
  `${isIpAddress(host) ? host : '127.0.0.1'}:443:443`
317
- );
402
+ )
318
403
  }
319
404
 
320
405
  if (!ctx.debug && varnish.enabled) {
321
406
  dockerConfig.varnish = {
322
407
  _: 'Varnish',
323
- image: `${ varnish.version ? `varnish:${ varnish.version }` : varnish.image }`,
324
- name: `${ prefix }_varnish`,
408
+ image: `${
409
+ varnish.version
410
+ ? `varnish:${varnish.version}`
411
+ : varnish.image
412
+ }`,
413
+ name: `${prefix}_varnish`,
325
414
  mountVolumes: [
326
- `${ !isDockerDesktop ? path.join(cacheDir, 'varnish') : volumes.varnish.name }:/etc/varnish`
415
+ `${
416
+ !isDockerDesktop
417
+ ? path.join(cacheDir, 'varnish')
418
+ : volumes.varnish.name
419
+ }:/etc/varnish`
327
420
  ],
328
- ports: isDockerDesktop ? [
329
- `${ isIpAddress(host) ? host : '127.0.0.1' }:${ ports.varnish }:80`
330
- ] : [],
421
+ ports: isDockerDesktop
422
+ ? [
423
+ `${isIpAddress(host) ? host : '127.0.0.1'}:${
424
+ ports.varnish
425
+ }:80`
426
+ ]
427
+ : [],
331
428
  forwardedPorts: [
332
429
  isDockerDesktop
333
- ? `127.0.0.1:${ ports.varnish }:80`
334
- : `127.0.0.1:${ ports.varnish }`
430
+ ? `127.0.0.1:${ports.varnish}:80`
431
+ : `127.0.0.1:${ports.varnish}`
335
432
  ],
336
433
  env: {
337
434
  VARNISH_SIZE: '2G'
338
435
  },
339
436
  restart: 'on-failure:30',
340
437
  network: isDockerDesktop ? network.name : 'host',
341
- // eslint-disable-next-line max-len
342
- command: `/bin/bash -c "varnishd -a :${ isDockerDesktop ? 80 : ports.varnish } -t 600 -f /etc/varnish/default.vcl -s Cache=malloc,2048m -s Transient=malloc,512m -p http_resp_hdr_len=70000 -p http_resp_size=100000 && varnishlog"`,
343
- tmpfs: [
344
- '/var/lib/varnish:exec'
345
- ],
346
- description: `Varnish HealthCheck status: ${ logger.style.command(varnish.healthCheck ? 'enabled' : 'disabled') }`
347
- };
438
+
439
+ command: `/bin/bash -c "varnishd -a :${
440
+ isDockerDesktop ? 80 : ports.varnish
441
+ } -t 600 -f /etc/varnish/default.vcl -s Cache=malloc,2048m -s Transient=malloc,512m -p http_resp_hdr_len=70000 -p http_resp_size=100000 && varnishlog"`,
442
+ tmpfs: ['/var/lib/varnish:exec'],
443
+ description: `Varnish HealthCheck status: ${logger.style.command(
444
+ varnish.healthCheck ? 'enabled' : 'disabled'
445
+ )}`
446
+ }
348
447
  }
349
448
 
350
- return dockerConfig;
351
- };
449
+ return dockerConfig
450
+ }
352
451
 
353
452
  return {
354
453
  network,
355
454
  volumes,
356
455
  getContainers
357
- };
358
- };
456
+ }
457
+ }