Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Docker technology uses the functions of kernel, such as Cgroup Cgroups and Namespace, along with the Linux kernel, to separate the processes so that they can run independently, and to facilitate container creation and deployment, image transfer, and image version management processes as well as to execute containers.

...

          • Comparison of Docker and Virtual Machine Structure

Image Modified

...

  • Image: it does not change as it contains files and settings required for container execution
    • Base image: Only the basic files or the Linux distribution are installed
    • Docker image: After installing necessary programs, libraries, and sources for the base image, it is made into one file. In this document, an image refers to a Docker image created with one file after installing the Altibase database and necessary libraries on the base image
  • Container: All values added or changed while the image is executed are stored in the container. In other words, when multiple containers are created with the same image, access to the lower image is shared, but each container has its own data.

         Relationship between image and container

Image Modified

 

Reference source: https://docs.docker.com/