Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

remove all docker containers

docker ps -aq
docker stop $(docker ps -aq)
docker rm $(docker ps -aq)
docker rmi $(docker images -q)
Comment

docker delete all containers

sudo docker stop $(docker ps -a -q)
sudo docker rm $(docker ps -a -q)
Comment

docker remov all running containers

docker rm $(docker ps -aq)
Comment

docker delete all containers

docker container rm $(docker container ls –aq)
docker container stop $(docker container ls –aq) && docker system prune –af ––volumes
Comment

PREVIOUS NEXT
Code Example
Shell :: install jupyter notebook 
Shell :: how to open current terminal directory in file explorer 
Shell :: how to install emotion in gatsby 
Shell :: github readme stats 
Shell :: wsl2 release memory 
Shell :: node-sass run 
Shell :: command line calculate folder size 
Shell :: linux bash clear log file space 
Shell :: git syntax 
Shell :: install 7z commadn line windows 
Shell :: getopts without argument 
Shell :: cli zip 
Shell :: powershell check file extension 
Shell :: apt install xfce 
Shell :: localhost run 
Shell :: install opencv raspberry pi 
Shell :: virtualbox ubuntu mouse scroll not working 
Shell :: docker remove tag 
Shell :: nvcc not found in jetson nano 
Shell :: install node on ubuntu 
Shell :: how to count files in a directory linux 
Shell :: add job to crontab 
Shell :: error TS1056 
Shell :: git update ignore local changes 
Shell :: public key show 
Shell :: cd into differernt drive 
Shell :: copy contents of folder to another folder in terminal 
Shell :: install github cli debian 
Shell :: apt vs homebrew 
Shell :: git remote add upstream 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =