InterviewSolution
Saved Bookmarks
| 1. |
What is a Docker image? How are they shared and accessed? |
|
Answer» A developer writes code instructions to define all the applications and its dependencies in a file CALLED a “Dockerfile”.Dockerfile is used to create a ‘Docker image’ using the ‘docker build <directory>’ command.The build command is run by the docker daemon.
Image CREDIT: docs.docker.com
|
|