Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 625 Bytes

tips-and-tricks.md

File metadata and controls

40 lines (26 loc) · 625 Bytes
description
A collection of useful tips and tricks for Docker.

Tips and Tricks

Delete all containers

NOTE: This will remove ALL your containers.

docker rm $(docker ps -a -q)

Delete all untagged containers

docker rmi $(docker images | grep '^<none>' | awk '{print $3}')

See all space Docker take up

docker system df

Get IP address of running container

docker inspect [CONTAINER ID] | grep -wm1 IPAddress | cut -d '"' -f 4

Kill all running containers

docker kill $(docker ps -q)

Got more tips and tricks? Submit a PR!