mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-22 11:09:07 +00:00
[provisioning] Script to clean up after docker
This commit is contained in:
parent
98ae821709
commit
68c4ddbd2e
1 changed files with 3 additions and 0 deletions
3
bin/undock
Executable file
3
bin/undock
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
docker stop $(docker ps -aq); docker rm $(docker ps -aq); docker rmi $(docker images -q) --force
|
Loading…
Reference in a new issue