File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ wait_on( { resources: [ `tcp:localhost:${process.env.LOCAL_PORT}`] } )
5555function wp_cli ( cmd ) {
5656 const composeFiles = local_env_utils . get_compose_files ( ) ;
5757
58- execSync ( `docker compose ${ composeFiles } run --rm cli ${ cmd } ` , { stdio : 'inherit' } ) ;
58+ execSync ( `docker compose ${ composeFiles } run --quiet-pull -- rm cli ${ cmd } ` , { stdio : 'inherit' } ) ;
5959}
6060
6161/**
Original file line number Diff line number Diff line change 3131const containers = ( process . env . LOCAL_PHP_MEMCACHED === 'true' )
3232 ? 'wordpress-develop memcached'
3333 : 'wordpress-develop' ;
34- execSync ( `docker compose ${ composeFiles } up -d ${ containers } ` , { stdio : 'inherit' } ) ;
34+ execSync ( `docker compose ${ composeFiles } up --quiet-pull - d ${ containers } ` , { stdio : 'inherit' } ) ;
3535
3636// If Docker Toolbox is being used, we need to manually forward LOCAL_PORT to the Docker VM.
3737if ( process . env . DOCKER_TOOLBOX_INSTALL_PATH ) {
You can’t perform that action at this time.
0 commit comments