We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ee0ee7 commit 78af907Copy full SHA for 78af907
build-packages/magento-scripts/lib/tasks/php/update-env-php.js
@@ -62,7 +62,7 @@ const updateEnvPHP = () => ({
62
REDIS_PORT: ctx.ports.redis,
63
ADMIN_URI: ctx.config.overridenConfiguration.magento.adminuri,
64
HOST_MACHINE: hostMachine,
65
- PORTS: JSON.stringify(ctx.ports)
+ PORTS: `'${JSON.stringify(ctx.ports)}'`
66
},
67
command: 'php ./update-env.php',
68
mountVolumes: [
@@ -72,6 +72,7 @@ const updateEnvPHP = () => ({
72
`${envPhpPath}:${ctx.config.baseConfig.containerMagentoDir}/env.php`
73
],
74
image: php.image,
75
+ platform: php.platform,
76
detach: false,
77
rm: true
78
})
0 commit comments