Skip to content
Aitor Gómez-Goiri edited this page Feb 2, 2016 · 3 revisions

Useful commands for Docker:

  • Delete stopped non-data containers (to test!):
$ docker ps -a -f status=exited | awk '{ print $1,$2 }' | grep "packettracer$" | awk '{print $1 }' | xargs -I {} docker rm {}
Clone this wiki locally