I installed Docker on Windows Home, but after a month without touching it, I forgot various things, so I will write it as a memo. You will forget what you have studied unless you output it many times.
-** MSDN Tutorial: NET Core App Containerization ** This MSDN describes everything from creating a Docker file to executing images and containers. If you get lost in the basics, please see this article.
docker images
docker run {image name or id}
The run command is a command that creates and starts.docker stop {container name or id}
docker attach {container name or id}
.docker rm {container id or name}
docker ps -a
. (If there is no -a option, only the one that is running is displayed)Recommended Posts