by Jason Zheng | Oct 24, 2018 | Docker
List all docker containers: [shell]docker ps -a[/shell] List docker container names: [shell]docker ps –format “{{.Names}}”[/shell] List docker images names: [shell]docker images -a[/shell] Stop all running containers: [shell]docker stop $(docker ps...