Open
Description
Describe the bug
A few of the tasks, particularly the PHP tasks, take several minutes to run.
This is likely due to Docker's file I/O. Which is known to be slow, especially on a Mac. Projects with either many files or large files are likely to be affected.
A few things you may do to reduce project size:
- Remove any temporarily files: caches, logs, db dumps, etc
- Temporarily remove the
node_modules
folder - Temporarily remove your development dependencies by removing the
vendor
folder and runningcomposer install --no-dev
- For long-lived repositories, manually run
git gc
to optimize your local project.git
folder.
We will continue to optimize the volume options using by the Workbench. We're also hopeful Docker will continue to improve this issue.