What is the difference between Moby and Docker?
Moby is an open source framework created by Docker, which is used to assemble specialized container systems. Docker is an open source application container engine that allows developers to package applications into containers. , and then publish to any popular platform.
Moby
The core of Moby is a framework for assembling specialized container systems. It provides:
A library of containerized components for all important aspects of a container system: operating system, container runtime, orchestration tools, infrastructure management, networking, storage, security, build, mirroring Distribution etc.
Tools for assembling components into runnable artifacts for various platforms and architectures: such as bare metal (x86 and arm), Linux, Mac and Windows executables and the popular VM images from cloud services and virtualization providers.
A set of reference components that can be used directly, modified, or used as inspiration for creating your own components.
Docker
Docker is an open source application container engine that allows developers to package their applications and dependencies into a portable In the container, it is then published to any popular Linux machine or Windows machine, and virtualization can also be achieved. The containers completely use the sandbox mechanism and will not have any interfaces with each other.
A complete Docker consists of the following parts:
DockerClient client
Docker Daemon daemon process
Docker Image
DockerContainer container
Recommended tutorial: "Docker 》
The above is the detailed content of What is the difference between Moby and Docker?. For more information, please follow other related articles on the PHP Chinese website!