DOCKER
Docker is an open-source software platform that enables developers to create, deploy, and manage applications in a wide variety of computing environments.
It provides a container-based virtualization system that allows developers to package their applications into isolated containers, which can then be deployed on any operating system or cloud platform.
With Docker, developers can quickly and easily create, test, and deploy applications without having to worry about compatibility issues or hardware requirements.
Docker Image: A Docker image is a lightweight, standalone, and executable package that contains everything needed to run an application, including the code, runtime environment, libraries, and system tools.
It provides a consistent and reproducible platform for deploying applications regardless of the underlying infrastructure or host operating system. Docker images are created from a base image by defining a set of instructions called a Dockerfile that specify how to build the image step by step.
Docker Container: A container is an isolated environment for your code. This means that a container has no knowledge of your operating system or your files.
It runs on the environment provided to you by Docker Desktop. This is why a container usually has everything that your code needs in order to run, down to a base operating system. You can use Docker Desktop to manage and explore your containers.
Dockerfile: Docker can build images automatically by reading the instructions from a Dockerfile. A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.
Recommended by LinkedIn
Docker Compose: Docker Compose is a powerful and efficient tool used to define and manage multi-container Docker applications.
It allows developers to create an application stack, describing the services, networks, and volumes needed for the containers to run seamlessly together. With Docker Compose, the orchestration of complex architectures becomes much simpler as it automates the deployment process.
Docker Daemon: The background service running on the host that manages to build, run, and distribute Docker containers. The daemon is the process that runs in the operating system to which clients talk.
Docker Client: The command line tool that allows the user to interact with the daemon.
Docker Hub: A registry of Docker images. You can think of the registry as a directory of all available Docker images. Docker registries can use them for pushing/pulling images.
Most commonly used tags in a Dockerfile: