0% found this document useful (0 votes)
34 views1 page

docker infra

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views1 page

docker infra

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Linux containers, in short, contain applications in a way that keep them isolated

from the
host system that they run on.
Containers allow a developer to package up an application with all of the parts it
needs,
such as libraries and other dependencies, and ship it all out as one package.
And they are designed to make it easier to provide a consistent experience as
developers
and system administrators move code from development environments into production
in a
fast and replicable way.
Question: Who Is Docker For?
Docker is a tool that is designed to benefit both developers and system
administrators,
making it a part of many DevOps (developers + operations) toolchains.
For developers, it means that they can focus on writing code without worrying about
the system that it will ultimately be running on.
It also allows them to get a head start by using one of thousands of programs
already
designed to run in a Docker container as a part of their application.
For operations staff, Docker gives flexibility and potentially reduces the number
of systems
needed because of its small footprint and lower overhead.
60/71
Question: What Is Docker Container?
Docker containers include the application and all of its dependencies, but share
the kernel
with other containers, running as isolated processes in user space on the host
operating
system.

You might also like