Moby Project - a collaborative project for the container ecosystem to assemble container-based systems
Go to file
Victor Vieux 4836b0ab85 Merge pull request #33129 from vieux/builder-report-2017-05-07
Add dev report for may 8th
2017-05-10 09:25:24 -07:00
.github
api Merge pull request #32877 from chchliang/unittest 2017-05-09 09:42:08 +02:00
builder Merge pull request #33114 from dnephin/fix-builder-warn-on-unused-builtint 2017-05-10 09:38:07 +02:00
cli Remove compose 2017-05-06 10:57:07 +10:00
client add disk usage test for client 2017-05-03 12:37:28 +08:00
cmd/dockerd Remove cmd/docker and other directories in cli/ in accordance with the new Moby project scope 2017-05-05 12:14:29 -07:00
container Merge pull request #32909 from cpuguy83/32907_volume_unmount_on_cp 2017-05-09 20:15:41 +02:00
contrib Merge pull request #33045 from albers/completion--health-start-period 2017-05-10 15:54:43 +02:00
daemon Merge pull request #31012 from cpuguy83/do_not_remove_containers_on_error 2017-05-10 06:21:28 -04:00
distribution Merge pull request #33057 from dmcgowan/windows-download-descriptor 2017-05-10 11:36:19 -04:00
dockerversion
docs Merge pull request #32939 from jvmatl/master 2017-05-09 09:50:21 +02:00
experimental Fix list of experimental features 2017-05-03 23:29:11 +02:00
hack Update make.ps1 to respect client repo 2017-05-09 13:07:09 -07:00
image Merge pull request #32949 from dnephin/refactor-streamformatter-and-progress 2017-05-03 09:05:26 -07:00
integration-cli Merge pull request #32909 from cpuguy83/32907_volume_unmount_on_cp 2017-05-09 20:15:41 +02:00
keys
layer
libcontainerd Update moby to runc and oci 1.0 runtime final rc 2017-05-05 13:45:45 -07:00
man Add `docker build --iidfile=FILE` 2017-05-05 16:35:54 +01:00
migrate/v1
oci Update moby to runc and oci 1.0 runtime final rc 2017-05-05 13:45:45 -07:00
opts
pkg Merge pull request #31012 from cpuguy83/do_not_remove_containers_on_error 2017-05-10 06:21:28 -04:00
plugin Update moby to runc and oci 1.0 runtime final rc 2017-05-05 13:45:45 -07:00
profiles Update moby to runc and oci 1.0 runtime final rc 2017-05-05 13:45:45 -07:00
project
reference
registry
reports Merge pull request #33129 from vieux/builder-report-2017-05-07 2017-05-10 09:25:24 -07:00
restartmanager
runconfig Windows: Block read-only 2017-05-08 09:29:37 -07:00
vendor Update go-winio to v0.4.0 2017-05-09 17:49:55 -07:00
volume Merge pull request #32909 from cpuguy83/32907_volume_unmount_on_cp 2017-05-09 20:15:41 +02:00
.dockerignore
.gitignore
.mailmap
AUTHORS
CHANGELOG.md
CONTRIBUTING.md
Dockerfile Merge pull request #32670 from perweij/fix-Dockerfile-instruction 2017-05-09 17:20:42 +02:00
Dockerfile.aarch64 Remove cmd/docker and other directories in cli/ in accordance with the new Moby project scope 2017-05-05 12:14:29 -07:00
Dockerfile.armhf Remove cmd/docker and other directories in cli/ in accordance with the new Moby project scope 2017-05-05 12:14:29 -07:00
Dockerfile.ppc64le Remove cmd/docker and other directories in cli/ in accordance with the new Moby project scope 2017-05-05 12:14:29 -07:00
Dockerfile.s390x Remove cmd/docker and other directories in cli/ in accordance with the new Moby project scope 2017-05-05 12:14:29 -07:00
Dockerfile.simple Remove cmd/docker and other directories in cli/ in accordance with the new Moby project scope 2017-05-05 12:14:29 -07:00
Dockerfile.solaris
Dockerfile.windows
LICENSE
MAINTAINERS Use personal email address 2017-04-26 11:59:51 -07:00
Makefile Remove cmd/docker and other directories in cli/ in accordance with the new Moby project scope 2017-05-05 12:14:29 -07:00
NOTICE
README.md Clarify relationship between Moby and Docker. 2017-04-21 06:20:46 -05:00
ROADMAP.md
VENDORING.md
VERSION
poule.yml Disable auto-assign for Anusha 2017-04-26 17:18:06 -07:00
vendor.conf Update go-winio to v0.4.0 2017-05-09 17:49:55 -07:00

README.md

Docker users, see Moby and Docker to clarify the relationship between the projects

Docker maintainers and contributors, see Transitioning to Moby for more details

The Moby Project

Moby Project logo

Moby is an open-source project created by Docker to advance the software containerization movement. It provides a “Lego set” of dozens of components, the framework for assembling them into custom container-based systems, and a place for all container enthusiasts to experiment and exchange ideas.

Moby

Overview

At the core of Moby is a framework to assemble specialized container systems. It provides:

  • A library of containerized components for all vital aspects of a container system: OS, container runtime, orchestration, infrastructure management, networking, storage, security, build, image distribution, etc.
  • Tools to assemble the components into runnable artifacts for a variety of platforms and architectures: bare metal (both x86 and Arm); executables for Linux, Mac and Windows; VM images for popular cloud and virtualization providers.
  • A set of reference assemblies which can be used as-is, modified, or used as inspiration to create your own.

All Moby components are containers, so creating new components is as easy as building a new OCI-compatible container.

Principles

Moby is an open project guided by strong principles, but modular, flexible and without too strong an opinion on user experience, so it is open to the community to help set its direction. The guiding principles are:

  • Batteries included but swappable: Moby includes enough components to build fully featured container system, but its modular architecture ensures that most of the components can be swapped by different implementations.
  • Usable security: Moby will provide secure defaults without compromising usability.
  • Container centric: Moby is built with containers, for running containers.

With Moby, you should be able to describe all the components of your distributed application, from the high-level configuration files down to the kernel you would like to use and build and deploy it easily.

Moby uses containerd as the default container runtime.

Audience

Moby is recommended for anyone who wants to assemble a container-based system. This includes:

  • Hackers who want to customize or patch their Docker build
  • System engineers or integrators building a container system
  • Infrastructure providers looking to adapt existing container systems to their environment
  • Container enthusiasts who want to experiment with the latest container tech
  • Open-source developers looking to test their project in a variety of different systems
  • Anyone curious about Docker internals and how its built

Moby is NOT recommended for:

  • Application developers looking for an easy way to run their applications in containers. We recommend Docker CE instead.
  • Enterprise IT and development teams looking for a ready-to-use, commercially supported container platform. We recommend Docker EE instead.
  • Anyone curious about containers and looking for an easy way to learn. We recommend the docker.com website instead.

Transitioning to Moby

Docker is transitioning all of its open source collaborations to the Moby project going forward. During the transition, all open source activity should continue as usual.

We are proposing the following list of changes:

  • splitting up the engine into more open components
  • removing the docker UI, SDK etc to keep them in the Docker org
  • clarifying that the project is not limited to the engine, but to the assembly of all the individual components of the Docker platform
  • open-source new tools & components which we currently use to assemble the Docker product, but could benefit the community
  • defining an open, community-centric governance inspired by the Fedora project (a very successful example of balancing the needs of the community with the constraints of the primary corporate sponsor)

Legal

Brought to you courtesy of our legal counsel. For more context, please see the NOTICE document in this repo.

Use and transfer of Moby may be subject to certain restrictions by the United States and other governments.

It is your responsibility to ensure that your use and/or transfer does not violate applicable laws.

For more information, please see https://www.bis.doc.gov

Licensing

Moby is licensed under the Apache License, Version 2.0. See LICENSE for the full license text.