stop all container in docker
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
stop all container in docker
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
docker kill all containers windows
You could create a batch-file (.bat or .cmd) with these commands in it:
@ECHO OFF
FOR /f "tokens=*" %%i IN ('docker ps -q') DO docker stop %%i
If you want to run this command directly in the console, replace %%i with %i, like:
FOR /f "tokens=*" %i IN ('docker ps -q') DO docker stop %i
In Git Bash or Bash for Windows you can use this Linux command:
docker stop $(docker ps -q)
For PowerShell, the command is very similar to the Linux one:
docker ps -q | % { docker stop $_ }
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us