Site currently work in progress

List of Docker Commands

Purging Images, Containers, Volumes and Networks

docker system prune

docker system prune -a

To remove any stopped containers and all unused images

Docker Images

To list all images

docker images -a

To remove all images

docker rmi -f $(docker images -aq)

Docker Containers

To list all containers

docker ps -a

To remove all containers

docker rm -vf $(docker ps -aq)