An operating system is a prerequisite for using Docker. Docker is installed as a program package and provides its services. Processes are operated on the basis of images in containers. An image is the description of an environment and is instantiated as a container. The image describes the environment of a process while the container is a running instance. With Docker, it is possible to run multiple instances of a web server on one machine and make each instance think it is running on port 8080.
An executable program is packaged in a Docker Image. All runtime parts, such as a runtime environment, resource files, or the like, are packaged in the image. The image is the binary distribution and remains unchanged no matter in which target environment Docker is later used. The image itself is unchangeable and becomes a container when executed in docker jargon. Any changes made by the process are logged in the container. So it is possible to start an image multiple times on one environment. Docker creates an image of the image and references it after starting as a container with a unique ID. Another start creates a new container with a unique ID.
When a Docker Container is started, a defined environment is created for the process running there, so that the process always finds an identical environment after starting. Files, environment settings or network socket assignments are always identical. For example, if a Web server is started that wants to publish content on port 8080, the port is always available. Even if the port on the surrounding host system is already occupied or other instances of the container are running.
References:
https://www.docker.com/
http://www.bytefusion.de/
0 Comments