InterviewSolution
Saved Bookmarks
| 1. |
What is a Docker? Explain its role in DevOps. |
|
Answer» Every source code DEPLOYMENT needs to be PORTABLE and compatible on every device and environment. Applications and their RUN time environment such as libraries and other dependencies like binaries, jar files, configuration files etc.. are bundled up(packaged) in a Container. Containers as a whole are portable, consistent and compatible with any environment. In development words, a developer can run its application in any environment: dev, uat, preprod and production WITHOUT worrying about the run-time dependencies of the application.
|
|