Assignment for docker day1

Q1. Explain What is Docker Container with image? A container which contains our image with root file system, 1 PID, 1 NW, 1 MNT, 1 USER. Q2. What is the difference between docker stop and docker kill? docker stop and docker kill doing the same thing only the internal process have difference. Both stops a running container to an exit state. docker create –name vin6 httpddocker start vin6docker psdocker stop vin6docker ps -adocker start vin6docker pause vin6docker ps -adocker unpause

Read more

Assignment for docker day 1

Q1. Explain What is Docker Container with image? Docker container is an independent application that is light weight . And which will be having 1 Root FS, 1 MNT NS , 1Networks NS , and 1 PID NS .Docker images are files that can be loaded into the container. The docker image which can be loaded into a container only if the Root File System of docker container is compatible with the image. Q2. What is the difference between docker

Read more

What is Docker Container ?

Containerization is the grouping together of software components with all it’s necessary dependent elements, like libraries, frameworks, and other dependencies so the software execution isolate in their own environment.Such isolated user spaces are called “Containers”, docker engine is a is such a a containerization platform, that packages application and its dependencies together in the form of a docker container and run in an isolated environment.Advantages of Container technologies – Lightweight, independent, easy to mange and performance efficient.

Read more

Assignment for docker day 1

Q1. Explain What is Docker Container with image? Docker images act as a set of instructions to build a Docker container, like a template. Docker is used to create, run and deploy applications in containers. Images can exist without containers, whereas a container needs to run an image to exist. A Docker container is a virtualized runtime environment used in application development. It is used to create, run and deploy applications that are isolated from the underlying hardware. Q2. What

Read more

Day-1: Q1.Explain what is docker container with images?

Docker image: Docker image is a collection of file system (Root FS, User FS and App FS). Use “docker images” command to see the docker images Docker Container: Docker container is the runnable instance of docker image. Docker container contains 1 ROOT FS, 1 PID, 1 NET and 1 USER and attach ROOT FS, PID and NET to user. One copy of docker image get attached to each container Use “docker ps” command to see all docker containers with status

Read more
1 62 63 64 65 66 332