docker run #Command to get an image and start a container from the image
The processing of the following three commands is the same as executing them in order.
docker pull #Get image
docker create #Creating a container
docker start #Start container
The Docker run command is convenient!
Recommended Posts