Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 481 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 481 Bytes

dataeng2020

Personal Repository for Data Engineering course, autumn semester 2020/2021 University of Tartu

Docker notes

Stop and remove all docker containers and images

Source

#List all containers (only IDs)
docker ps -aq

#Stop all running containers
docker stop $(docker ps -aq)

#Remove all containers
docker rm $(docker ps -aq)

#Remove all images
docker rmi $(docker images -q)