What is the improvement or update you wish to see?
The current README of the with-docker folder contains the command to shutdown the generated containers.
# Stop all running containers
docker kill $(docker ps -q) && docker rm $(docker ps -a -q)
But this also deletes ALL docker containers on the user's system, this needs to be updated to:
# Stop running containers started by docker-compse
docker-compose -f docker-compose.yml down
Don't ask me how I know
Is there any context that might help us understand?
Deleted all my docker containers, and this was the reason why
Does the docs page already exist? Please link to it.
https://github.com/vercel/turborepo/tree/main/examples/with-docker