Topic D01- Container Technology
What are Containers? It can be defined as a standard package of software that bundles the code and all its dependencies so that the application is able to run quickly and reliably from one computing environment to another. It provides an infrastructure that allows application deployment to be packaged lightly and immutably. Container Image- The code, runtime, system tools, system libraries, and settings are packaged together as a container image. Linux Containers Is a set of one or more processes that are isolated from the rest of the system. All the files necessary to run them are provided from a distinct image. Linux containers are portable and consistent as they move from development to testing, and then finally to production. This makes it better to use than most development pipelines. Linux containers help you alleviate issues and iterate faster—across multiple environments. Why should you use Linux Containers? Imagine you’re developing an application. You do you...