Detailed explanation of basic commands of Docker


1. Docker basic command classification

Docker basic commands can be divided into commands for managing images, containers, networks, data volumes, and systems according to the operating objects.
Each type of command has different subdivisions, which are described in detail below.

2. Decomposition by category

1. Manage containers

docker run: used to run the container
docker stop: used to stop the container
docker kill: used to force stop the container
docker rm: used to delete the container
docker ps: used to view the currently running container

2. Manage images

docker build: used to create mirrors
docker pull: used to pull mirrors from mirror warehouses
d

Guess you like

Origin blog.csdn.net/weixin_46417939/article/details/128320409