What is Docker Images and Exaplin in 10 bullet lines?

Docker image is a collection of files systems A docker image acts as a blueprint for docker container. File systems are layered over each other Layer 0 must contain a root filesystem Each layer in image will have 40 character length UUID generated by SHA 256 algorithm. The topmost layer will have priority. All layers in a docker image is Read only. All layers in an image is combined to form a container. From one image multiple containers can be

Read more

What is Storage Driver and types of Storage Driver? Explained with Images.

Docker supports several storage drivers, using a pluggable architecture. The storage driver controls how images and containers are stored and managed on your Docker host. Docker uses storage drivers to store image layers Docker uses storage drivers to store data in the writable layer of a container. The container’s writable layer does not persist after the container is deleted, but is suitable for storing temp data generated at runtime. Storage drivers are optimized for space efficiency. But write speeds are

Read more

Assignment 2 for Docker Day 1

Q1. – What is the use of “docker update” commands? with example and image “docker update” is used to limit the usage of resources a container can use. CPU usage can be limited by CPU time, no.of CPUs used, or which CPUs are used. Memory usage can be limited for Main Memory as well as Swap Disk IO can be limited by specifying a relative weight. No.of PIDs container can allocate can be limited. This command can also be used

Read more
1 59 60 61 62 63 185