Skip to content

Commit 29b240d

Browse files
committed
Build/Test Tools: Update Docker Compose to v2 for 5.8 branch.
This updates an instance of `docker-compose` in the `env:start` script to use the new `docker compose` format that was missed in the initial commit. Follow up to [58597]. See #60901. git-svn-id: https://develop.svn.wordpress.org/branches/5.8@59211 602fd350-edb4-49c9-b593-d223f7449a82
1 parent b1389fb commit 29b240d

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( 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)