Changeset 59658
- Timestamp:
- 01/17/2025 10:32:22 AM (5 months ago)
- Location:
- trunk/tools/local-env/scripts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/local-env/scripts/install.js
r59279 r59658 56 56 const composeFiles = local_env_utils.get_compose_files(); 57 57 58 execSync( `docker compose ${composeFiles} run -- rm cli ${cmd}`, { stdio: 'inherit' } );58 execSync( `docker compose ${composeFiles} run --quiet-pull --rm cli ${cmd}`, { stdio: 'inherit' } ); 59 59 } 60 60 -
trunk/tools/local-env/scripts/start.js
r59279 r59658 32 32 ? 'wordpress-develop memcached' 33 33 : 'wordpress-develop'; 34 execSync( `docker compose ${composeFiles} up - d ${containers}`, { stdio: 'inherit' } );34 execSync( `docker compose ${composeFiles} up --quiet-pull -d ${containers}`, { stdio: 'inherit' } ); 35 35 36 36 // If Docker Toolbox is being used, we need to manually forward LOCAL_PORT to the Docker VM.
Note: See TracChangeset
for help on using the changeset viewer.