#Docker container operations

To start the container named goyuninfo:

docker start goyuninfo
To stop and start again the container with a single command:

docker restart goyuninfo
To delete the container, stop it first, and then use the docker rm command:

docker stop goyuninfo
docker rm goyuninfo 

Comments