Skip to content

Instantly share code, notes, and snippets.

View omarkurt's full-sized avatar
:octocat:
Working from home

OK omarkurt

:octocat:
Working from home
View GitHub Profile
@omarkurt
omarkurt / docker.sh
Last active May 26, 2018 14:59 — forked from random-robbie/docker.sh
docker kill and remove
#!/bin/bash
# kill current docker
docker kill $(docker ps -q)
# Delete all containers
docker rm $(docker ps -a -q)
# Delete all images -f
docker rmi -f $(docker images -q)
# For exited
docker rm -v $(docker ps -aq -f status=exited)