Docker (software)

Edit · View history

Docker (software)

Docker is a platform for developing, shipping, and running applications inside lightweight, isolated environments called containers. It uses operating-system-level virtualization to package software with its dependencies, ensuring consistent behavior across different computing environments. Docker is widely used in software development, continuous integration, and deployment pipelines.

History

Docker was originally developed by French company dotCloud as an internal tool. The first public release, Docker 0.9, was made available in March 2013. In 2014, dotCloud renamed itself to Docker, Inc. and released Docker 1.0. The technology quickly gained popularity due to its ease of use and the ability to create reproducible development environments. In 2015, Docker, Inc. donated the container runtime and related components to the Cloud Native Computing Foundation (CNCF) under the name containerd. Over time, the Docker ecosystem expanded to include Docker Compose for multi-container applications and Docker Swarm for orchestration. In 2023, Docker, Inc. introduced the Docker Subscription Service Agreement, altering its free licensing model for commercial use.

Features

Usage

Docker is commonly used for microservices architectures, continuous integration/continuous deployment (CI/CD) pipelines, and creating reproducible development environments. Developers write a Dockerfile that specifies the base image, application code, and configuration. The image is built and then deployed to any Docker host. Docker containers are ephemeral by design, encouraging stateless application patterns.

See also

References