Stop all Docker containers
19 August 2022 (Updated 19 September 2022)
docker ps -aq | xargs docker stop
docker ps -aq
will give you the list of all the container IDs. Once you have the container IDs, you pass it to docker stop
which will stop them.
Tagged:
Docker
Thanks for your comment 🙏. Once it's approved, it will appear here.
Leave a comment