A collection of useful tips and tricks for Docker.
NOTE: This will remove ALL your containers.
docker container pruneOR, if you're using an older docker client:
docker rm $(docker ps -a -q)docker image pruneOR, if you're using an older docker client:
docker rmi $(docker images | grep '^<none>' | awk '{print $3}')docker system dfdocker inspect [CONTAINER ID] | grep -wm1 IPAddress | cut -d '"' -f 4docker kill $(docker ps -q)