Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Docker (software)

From Wikipedia, the free encyclopedia
Software for deploying containerized applications
This article is about the containerization software. For the company, seeDocker, Inc.

Docker
Screenshot of Docker Engine commands
Original authorSolomon Hykes
DeveloperDocker, Inc.
Initial releaseMarch 20, 2013; 12 years ago (2013-03-20)[1]
Stable release
29.2.1[2] Edit this on Wikidata / 2 February 2026
Written inGo[3]
Operating systemLinux,Windows,macOS
Platformx86-64,ARM,s390x,ppc64le
TypeOS-level virtualization
License
Websitewww.docker.comEdit this at Wikidata
Repository
Former logo

Docker is a set of products that usesoperating-system-level virtualization to deliver software in packages calledcontainers. Docker automates the deployment ofapplications within lightweight containers, enabling them to run consistently across different computing environments.

The core software that runs and manages these containers is calledDocker Engine. Docker was first released in 2013 and continues to be developed byDocker, Inc. The platform includes both free and paid tiers.

History

[edit]

Solomon Hykes [fr] started the Docker project in France as an internal project withindotCloud, aplatform-as-a-service company.[5]

dotCloud Inc. was founded by Kamel Founadi, Hykes, and Sebastien Pahl[6] during theY Combinator Summer 2010 startup incubator group and launched in 2011, and renamed to Docker Inc in 2013.[7]

Docker debuted to the public inSanta Clara atPyCon in 2013.[8] It was released asopen-source in March 2013.[9] At the time, it usedLXC as its default execution environment. One year later, with the release of version 0.9, Docker replaced LXC with its own component,libcontainer, which was written in theGo programming language.[10][11]

In 2017, Docker created theMoby project [wd] for open research and development.[12]

Adoption

[edit]
  • September 19, 2013:Red Hat and Docker announced a collaboration aroundFedora,Red Hat Enterprise Linux (RHEL), andOpenShift.[13]
  • October 15, 2014:Microsoft announced the integration of the Docker engine intoWindows Server, as well as native support for the Docker client role in Windows.[14][15]
  • November 2014: Docker container services were announced for theAmazon Elastic Compute Cloud (EC2).[16]
  • November 10, 2014: Docker announced a partnership withStratoscale.[17]
  • December 4, 2014:IBM announced a strategic partnership with Docker that enables Docker to integrate more closely with the IBM Cloud.[18]
  • June 22, 2015: Docker and several other companies announced that they were working on a new vendor and operating-system-independent standard for software containers.[19][20]
  • December 2015:Oracle Cloud added Docker container support after acquiringStackEngine, a Docker container startup.[21]
  • April 2016: Windocks, anindependent software vendor released a port of Docker's open source project to Windows, supporting Windows Server 2012 R2 and Server 2016, with all editions of SQL Server 2008 onward.[22]
  • May 2016: analysis showed the following organizations as main contributors to Docker: The Docker team,Cisco,Google,Huawei,IBM,Microsoft, andRed Hat.[23]
  • June 8, 2016: Microsoft announced that Docker could now be used natively onWindows 10.[24]
  • January 2017: An analysis ofLinkedIn profile mentions showed Docker presence grew by 160% in 2016.[25]
  • May 6, 2019: Microsoft announced the second version ofWindows Subsystem for Linux (WSL). Docker, Inc. announced that it had started working on a version of Docker for Windows to run on WSL 2.[26] In particular, this meant Docker could run on Windows 10 Home (previously it was limited to Windows Pro and Enterprise since it usedHyper-V).
  • August 2020: Microsoft announced a backport of WSL2 to Windows 10 versions 1903 and 1909 (previously WSL2 was available only on version 2004)[27] and Docker developers announced availability of Docker for these platforms.[28]
  • August 2021: Docker Desktop for Windows and MacOS was no longer available free of charge for enterprise users. Docker ended free Docker Desktop use for larger business customers and replaced its Free Plan with a Personal Plan. Docker Engine on Linux distributions remained unaffected.[29]
  • December 2023: Docker acquired AtomicJar to expand its testing capabilities.[30]

Design

[edit]
Docker can use different interfaces to access virtualization features of the Linux kernel.[31]

Containers are isolated from one another and bundle their own software,libraries and configuration files; they can communicate with each other through well-defined channels.[32] Because all of the containers share the services of a singleoperating system kernel, they use fewer resources thanvirtual machines.[33]

Docker can package an application and its dependencies in a virtual container that can, in principle, run on anyLinux,Windows, ormacOS computer. This enables the application to run in a variety of locations, such ason-premises, inpublic(seedecentralized computing,distributed computing, andcloud computing) orprivate cloud.[34] When running on Linux, Docker uses the resource isolation features of theLinux kernel (such ascgroups and kernelnamespaces) and aunion-capable file system (such asOverlayFS)[35] to allow containers to run within a single Linux instance, avoiding the overhead of starting and maintainingvirtual machines. Docker on macOS uses a Linuxvirtual machine to run the containers.[36]

Because Docker containers arelightweight, a single server or virtual machine can run several containers simultaneously.[37] A 2018 analysis found that a typical Docker use case involves running eight containers per host, and that a quarter of analyzed organizations run 18 or more per host.[38] It can also be installed on a single board computer like theRaspberry Pi.[39]

The Linux kernel's support for namespaces mostly[40] isolates an application's view of the operating environment, including process trees, network, user IDs and mounted file systems, while the kernel's cgroups provide resource limiting for memory and CPU.[41] Since version 0.9, Docker includes its own component (calledlibcontainer) to use virtualization facilities provided directly by the Linux kernel, in addition to using abstracted virtualization interfaces vialibvirt,LXC andsystemd-nspawn.[10][31][34][42]

Docker implements a high-levelAPI to provide lightweight containers that run processes in isolation.[9]

Components

[edit]

The Docker software as a service offering consists of three components:

Software
The Dockerdaemon, calleddockerd, is a persistent process that manages Docker containers and handles container objects. The daemon listens for requests that are sent via the Docker Engine API.[43][44] The Docker client program, calleddocker, provides acommand-line interface (CLI) that allows users to interact with Docker daemons.[43][45]
Objects
Docker objects are various entities used to assemble an application in Docker. The main classes of Docker objects are images, containers, and services.[43]
  • A Dockercontainer is a standardized, encapsulated environment that runs applications.[46] A container is managed using the Docker API orCLI.[43]
  • A Dockerimage is a read-only template used to build containers. Images are used to store and ship applications.[43]
  • A Dockerservice allows containers to be scaled across multiple Docker daemons. The result is known as aswarm, a set of cooperating daemons that communicate through the Docker API.[43]
Registries
A Docker registry is a repository for Docker images. Docker clients connect to registries to download ("pull") images for use or upload ("push") images that they have built. Registries can be public or private. The main public registry is Docker Hub. Docker Hub is the default registry where Docker looks for images.[43][47] Docker registries also allow the creation of notifications based on events.[48]

A Dockerfile is a text file that commonly specifies several aspects of a Docker container: theLinux distribution, installation commands for the programming language runtime environment and application source code.

An example of a Dockerfile:[49]

ARGCODE_VERSION=latestFROMubuntu:${CODE_VERSION}COPY./examplefile.txt/examplefile.txtENVMY_ENV_VARIABLE="example_value"RUNapt-getupdate# Mount a directory from the Docker volume# Note: This is usually specified in the 'docker run' command.VOLUME["/myvolume"]# Expose a port (22 for SSH)EXPOSE22

Docker Compose is a tool for defining and running multi-container Docker applications.[50] It usesYAML files to configure the application's services and performs the creation and start-up process of all the containers with a single command. Thedocker compose CLI utility allows users to run commands on multiple containers at once; for example, building images,scaling containers, running containers that were stopped, and more.[51] Commands related to image manipulation, or user-interactive options, are not relevant in Docker Compose because they address one container.[52] Thedocker-compose.yml file is used to define an application's services and includes various configuration options. For example, thebuild option defines configuration options such as the Dockerfile path, thecommand option allows one to override default Docker commands, and more.[53] The first public beta version of Docker Compose (version 0.0.1) was released on December 21, 2013.[54] The first production-ready version (1.0) was made available on October 16, 2014.[55]

Docker Swarm provides nativeclustering functionality for Docker containers, which turns a group of Docker engines into a single virtual Docker engine.[56] In Docker 1.12 and higher, Swarm mode is integrated with Docker Engine.[57] Thedocker swarm CLI[58] utility allows users to run Swarm containers, create discovery tokens, list nodes in the cluster, and more.[59] Thedocker node CLI utility allows users to run various commands to manage nodes in a swarm, for example, listing the nodes in a swarm, updating nodes, and removing nodes from the swarm.[60] Docker manages swarms using theRaftconsensus algorithm. According to Raft, for an update to be performed, the majority of Swarm nodes need to agree on the update.[61][62] In addition to thedocker swarm CLI,docker stack is a tool designed to manage Swarm services with greater flexibility. It can use a configuration file very similar to adocker-compose.yml, with a few nuances. Usingdocker stack instead ofdocker compose offers several advantages, such as the ability to manage a Swarm cluster across multiple machines or the capability to work withdocker secret combined withdocker context, a feature that allows executing Docker commands on a remote host, enabling remote container management.

Docker Volume facilitates the independent persistence of data, allowing data to remain even after the container is deleted or re-created.[63]

Licensing model

[edit]
  • The Docker Engine is licensed under theApache License 2.0. Docker Desktop distributes some components that are licensed under theGNU General Public License. Docker Desktop is not free for large enterprises.[64]
  • The Dockerfile files can be licensed under an open-source license themselves. The scope of such a license statement is only the Dockerfile and not the container image.[citation needed]

See also

[edit]

References

[edit]
  1. ^Barbier, Julien (June 9, 2014)."It's Here: Docker 1.0".Docker. Docker, Inc. RetrievedSeptember 30, 2019.
  2. ^"v29.2.1". February 2, 2026. RetrievedFebruary 8, 2026.
  3. ^"Docker source code".docker/distribution repo. Docker, Inc. October 12, 2015. RetrievedOctober 24, 2015 – viaGitHub.
  4. ^"Docker Desktop license agreement". September 11, 2024.
  5. ^"One home for all your apps".dotcloud.com. Archived fromthe original on May 17, 2014. RetrievedMay 8, 2014.
  6. ^Hykes, Solomon (March 28, 2018)."Au Revoir".docker.com. Archived fromthe original on January 12, 2021. RetrievedJanuary 23, 2021.
  7. ^"About the dotCloud Platform".dotCloud. Archived fromthe original on July 2, 2014. RetrievedJune 23, 2019.
  8. ^"The future of Linux Containers".DotCloud Channel. March 21, 2013. RetrievedJuly 13, 2018 – viaYouTube.
  9. ^abAvram, Abel (March 27, 2013)."Docker: Automated and Consistent Software Deployments".InfoQ. RetrievedAugust 9, 2013.
  10. ^abVaughan-Nichols, Steven J. (June 11, 2014)."Docker libcontainer unifies Linux container powers".ZDNet. RetrievedJuly 30, 2014.
  11. ^Swan, Chris (March 13, 2014)."Docker drops LXC as default execution environment".InfoQ. RetrievedJanuary 20, 2015.
  12. ^"Demystifying the Relationship Between Moby & Docker – Welcome to Collabnix". May 6, 2017.
  13. ^"DotCloud Pivots And Wins Big With Docker, The Cloud Service Now Part Of Red Hat OpenShift".TechCrunch. September 19, 2013. RetrievedJanuary 20, 2014.
  14. ^Foley, Mary Jo (October 15, 2014)."Docker container support coming to Microsoft's next Windows Server release".ZDNet. RetrievedOctober 16, 2014.
  15. ^Guthrie, Scott (October 15, 2014)."Docker and Microsoft: Integrating Docker with Windows Server and Microsoft Azure".ScottGu's Blog. Microsoft. RetrievedJanuary 12, 2015.
  16. ^Barr, Jeff (November 13, 2014)."Amazon EC2 Container Service (ECS) – Container Management for the AWS Cloud".Amazon Web Services Blog. RetrievedApril 29, 2017.
  17. ^Rath, John (November 10, 2014)."Stratoscale Raises $32M to Build Docker-Supporting OpenStack Clouds on Commodity Servers". RetrievedJanuary 3, 2016.
  18. ^"IBM and Docker Announce Strategic Partnership to Deliver Enterprise Applications in the Cloud and On Prem".IBM. December 4, 2014. Archived fromthe original on January 10, 2015. RetrievedApril 20, 2015.
  19. ^Lardinois, Frederic (June 22, 2015)."Docker, CoreOS, Google, Microsoft, Amazon And Others Come Together To Develop Common Container Standard".TechCrunch. RetrievedAugust 8, 2015.
  20. ^Siluk, Shirley (June 22, 2015)."Docker, Tech Giants Team on Open Container Project".cio-today.com. Archived fromthe original on September 23, 2015. RetrievedAugust 8, 2015.
  21. ^McLaughlin, Kevin (December 22, 2015)."Oracle Acquires Docker Container Startup StackEngine, Plans Austin-Based Cloud Computing Center".CRN. RetrievedJanuary 13, 2022.
  22. ^Yegulalp, Serdar (April 4, 2016)."Windocks does what Docker and Microsoft can't do".InfoWorld. RetrievedOctober 27, 2018.
  23. ^"Docker – Updated project statistics".GitHub Gist. RetrievedAugust 22, 2016.
  24. ^Sarkar, Dona (June 8, 2016)."Announcing Windows 10 Insider Preview Build 14361".Windows Blogs.Microsoft. RetrievedJune 19, 2016.
  25. ^Mullany, Michael."Docker Momentum Analysis 2016".LinkedIn Pulse. RetrievedJanuary 5, 2017.
  26. ^Vaughan-Nichols, Steven (June 18, 2019)."Docker embraces Windows Subsystem for Linux 2".ZDNet.CBS Interactive.
  27. ^"WSL 2 Support is coming to Windows 10 Versions 1903 and 1909".Windows Command Line. August 20, 2020. RetrievedAugust 21, 2020.
  28. ^"Docker Desktop & WSL 2 - Backport Update".Docker Blog. August 20, 2020. RetrievedAugust 21, 2020.
  29. ^Carey, Scott (August 31, 2021)."Docker Desktop is no longer free for enterprise users".InfoWorld. RetrievedOctober 18, 2021.
  30. ^Miller, Ron (December 11, 2023)."Docker acquires AtomicJar, a testing startup that raised $25M in January".TechCrunch. RetrievedDecember 13, 2023.
  31. ^ab"Docker 0.9: Introducing execution drivers and libcontainer".Docker Blog. Docker, Inc. March 10, 2014. RetrievedJanuary 20, 2015.
  32. ^"Use containers to Build, Share and Run your applications".docker.com.
  33. ^"What is a Container?".docker.com.Docker, Inc. RetrievedMay 13, 2019.
  34. ^abNoyes, Katherine (August 1, 2013)."Docker: A 'Shipping Container' for Linux Code".Linux.com. Archived fromthe original on August 8, 2013. RetrievedAugust 9, 2013.
  35. ^"Select a storage driver documentation".Docker documentation. Archived fromthe original on December 6, 2016. RetrievedDecember 7, 2016.
  36. ^"Get started with Docker for Mac".docker.com. Docker, Inc. RetrievedSeptember 27, 2018.
  37. ^K., Chris (14 January 2019)."Lightweight Windows containers: Using Docker process isolation in Windows 10".Poweruser. Retrieved2 August 2019.more "lightweight" real containers (via so called process-isolation), where the containerized processes are running directly on the host system — all processes on the host and in the containers are sharing the same Windows kernel. This is similar to how containers on Linux work.
  38. ^"8 surprising facts about real Docker adoption".Datadog. June 2018. RetrievedSeptember 4, 2019.
  39. ^Gupta, Devender (October 13, 2022)."How to Install Docker on Raspberry Pi".Gizmoxo. Archived from the original on February 14, 2025. RetrievedOctober 15, 2022.{{cite web}}: CS1 maint: bot: original URL status unknown (link)
  40. ^Walsh, Dan (September 15, 2014)."Yet Another Reason Containers Don't Contain: Kernel Keyrings".projectatomic.io. RetrievedApril 13, 2015.
  41. ^"Limit a container's resources".Docker Documentation. RetrievedMarch 7, 2018.
  42. ^"libcontainer – reference implementation for containers".docker/libcontainer repo. Docker, Inc. RetrievedJuly 30, 2014 – viaGitHub.
  43. ^abcdefg"Docker overview".Docker Documentation. Docker, Inc. RetrievedFebruary 26, 2018.
  44. ^"dockerd".Docker Documentation. Docker, Inc. RetrievedFebruary 26, 2018.
  45. ^"Use the Docker command line".Docker Documentation. Docker, Inc. RetrievedFebruary 26, 2018.
  46. ^"The Docker Ecosystem: An Introduction to Common Components".www.digitalocean.com. RetrievedFebruary 26, 2018.
  47. ^"About Registry".Docker Documentation. Docker, Inc. RetrievedFebruary 26, 2018.
  48. ^"Work with notifications". March 2, 2019.
  49. ^"Dockerfile reference".Docker Documentation. November 14, 2023. RetrievedNovember 30, 2023.
  50. ^"Overview of Docker Compose".Docker Documentation. Docker, Inc. RetrievedJuly 6, 2017.
  51. ^"Compose command-line reference".Docker Documentation. Docker, Inc. RetrievedFebruary 28, 2018.
  52. ^"Orchestrate Containers for Development with Docker Compose".via @codeship. May 27, 2015. RetrievedFebruary 28, 2018.
  53. ^"Compose file version 3 reference".Docker Documentation. Docker, Inc. RetrievedFebruary 28, 2018.
  54. ^Firshman, Ben (December 21, 2013)."Release 0.0.1".docker/compose.Docker, Inc. – viaGitHub.
  55. ^Prasad, Aanand (October 16, 2014)."Release 1.0.0".docker/compose.Docker, Inc. – viaGitHub.
  56. ^"8 Container Orchestration Tools to Know".Linux.com. April 12, 2017. RetrievedJuly 6, 2017.
  57. ^"Docker Swarm".Docker Documentation. Docker, Inc. RetrievedJuly 6, 2017.
  58. ^"Docker swarm". June 4, 2021.
  59. ^"Swarm command-line reference".Docker Documentation. Docker, Inc. RetrievedFebruary 28, 2018.
  60. ^"docker node".Docker Documentation. RetrievedFebruary 28, 2018.
  61. ^"Docker Swarm 101".aquasec.com. RetrievedFebruary 28, 2018.
  62. ^"Raft Consensus Algorithm".raft.github.io. RetrievedFebruary 28, 2018.
  63. ^"Docker Desktop & Docker Guides".Docker Guide. April 25, 2021. Archived fromthe original on April 25, 2021. RetrievedApril 25, 2021.
  64. ^"Get Docker". September 11, 2024.

External links

[edit]
Hardware
(hypervisors)
Native
Hosted
Specialized
Independent
Tools
Operating
system
OS containers
Application containers
Virtual kernel architectures
Related kernel features
Orchestration
Desktop
Application
Network
See also
Linux containers
Container host operating systems
Container engines
Container cluster managers
Retrieved from "https://en.wikipedia.org/w/index.php?title=Docker_(software)&oldid=1336281450"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2026 Movatter.jp