InterviewSolution
Saved Bookmarks
| 1. |
Explain basic Docker usage workflow. |
|
Answer» Everything STARTS with the Dockerfile. The Dockerfile is the source code of the Image. Once you have the image of the container, you should REDISTRIBUTE it using the registry. The registry is like a git repository -- you can push and pull images. Next, you can use the image to run containers. A running container is very similar, in many aspects, to a virtual machine (but without the hypervisor). |
|