Skip to content

Commit 30c03e4

Browse files
committed
Build/Test Tools: Remove extraneous -- from docker-compose up command.
This end of command options mark can be erreonously interpreted as an (invalid) container name. Props westonruter, saggre Fixes #56550 git-svn-id: https://develop.svn.wordpress.org/trunk@54350 602fd350-edb4-49c9-b593-d223f7449a82
1 parent d6bae0c commit 30c03e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/local-env/scripts/start.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dotenvExpand.expand( dotenv.config() );
88
const containers = ( process.env.LOCAL_PHP_MEMCACHED === 'true' )
99
? 'wordpress-develop memcached'
1010
: 'wordpress-develop';
11-
execSync( `docker-compose up -d -- ${containers}`, { stdio: 'inherit' } );
11+
execSync( `docker-compose up -d ${containers}`, { stdio: 'inherit' } );
1212

1313
// If Docker Toolbox is being used, we need to manually forward LOCAL_PORT to the Docker VM.
1414
if ( process.env.DOCKER_TOOLBOX_INSTALL_PATH ) {

0 commit comments

Comments
 (0)