diff --git a/tools/local-env/scripts/start.js b/tools/local-env/scripts/start.js
index 83250ab9a4..35edf7f96f 100644
a
|
b
|
dotenvExpand.expand( dotenv.config() ); |
8 | 8 | const containers = ( process.env.LOCAL_PHP_MEMCACHED === 'true' ) |
9 | 9 | ? 'wordpress-develop memcached' |
10 | 10 | : 'wordpress-develop'; |
11 | | execSync( `docker-compose up -d -- ${containers}`, { stdio: 'inherit' } ); |
| 11 | execSync( `docker-compose up -d ${containers}`, { stdio: 'inherit' } ); |
12 | 12 | |
13 | 13 | // If Docker Toolbox is being used, we need to manually forward LOCAL_PORT to the Docker VM. |
14 | 14 | if ( process.env.DOCKER_TOOLBOX_INSTALL_PATH ) { |