Docker operations, delete and stop docker containers

Delete Docker container

docker rm -f <容器名>

//例如:有一容器名为mysql
docker rm -f mysql

Stop Docker container

docker stop 容器名

Check whether the current Docker process is running

docker ps

Check the current version of Docker

docker version

View Docker images

docker images

Guess you like

Origin blog.csdn.net/qq_53376718/article/details/133389311