The Moby Project - a collaborative project for the container ecosystem to assemble container-based systems
Find a file
Sebastiaan van Stijn 55207ea637
vendor: golang.org/x/net v0.22.0, golang.org/x/crypto v0.21.0
full diffs changes relevant to vendored code:

- https://github.com/golang/net/compare/v0.18.0...v0.22.0
    - websocket: add support for dialing with context
    - http2: remove suspicious uint32->v conversion in frame code
    - http2: send an error of FLOW_CONTROL_ERROR when exceed the maximum octets
- https://github.com/golang/crypto/compare/v0.17.0...v0.21.0
    - internal/poly1305: drop Go 1.12 compatibility
    - internal/poly1305: improve sum_ppc64le.s
    - ocsp: don't use iota for externally defined constants

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit e1ca74361b)
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
2024-04-09 11:25:24 +02:00
.devcontainer devcontainer: Use a separate devcontainer target 2024-03-07 20:39:56 +01:00
.github ci/validate-pr: Use ::error:: command to print errors 2024-04-08 14:21:21 +02:00
api api/image-inspect: Remove Container and ContainerConfig 2024-03-13 13:02:29 +01:00
builder Merge pull request #47563 from vvoland/buildkit-runc-override 2024-03-14 20:17:01 +01:00
cli
client client: fix connection-errors being shadowed by API version mismatch errors 2024-02-23 15:17:10 +01:00
cmd Be more explicit about non-TLS TCP access deprecation 2024-03-13 14:22:10 +01:00
container fix duplicate words (dupwords) 2024-03-07 10:57:03 +01:00
contrib dockerd-rootless-setuptool.sh: check RootlessKit functionality 2024-03-06 07:43:00 +09:00
daemon Restore the SetKey prestart hook. 2024-03-28 10:05:08 +01:00
distribution distribution/xfer: fix pull progress message 2024-02-29 14:02:55 +01:00
dockerversion
docs api: document changed behavior of the Aliases field in v1.45 2024-03-20 08:23:48 -06:00
errdefs
hack update containerd binary to v1.7.15 2024-04-08 18:09:01 +02:00
image imageService: Extract common code from MakeImageCache 2024-03-07 15:39:42 +01:00
integration Restore the SetKey prestart hook. 2024-03-28 10:05:08 +01:00
integration-cli specialimage: Return optional ocispec.Index 2024-03-07 16:25:30 +01:00
internal c8d/list: Add a test case for images sharing a top layer 2024-03-20 13:17:56 +01:00
layer
libcontainerd libcontainerd: change the digest used when restoring 2024-02-27 20:17:31 +08:00
libnetwork Restore the SetKey prestart hook. 2024-03-28 10:05:08 +01:00
oci daemon: set libnetwork sandbox key w/o OCI hook 2024-01-19 20:23:12 +00:00
opts
pkg rootless: fix open /etc/docker/plugins: permission denied 2024-03-16 22:03:34 +09:00
plugin plugin: fix mounting /etc/hosts when running in UserNS 2024-03-15 22:16:34 +09:00
profiles fix duplicate words (dupwords) 2024-03-07 10:57:03 +01:00
project Remove 'VERSION' from the text 2024-02-04 11:59:03 +08:00
quota fix duplicate words (dupwords) 2024-03-07 10:57:03 +01:00
reference
registry api/search: Reset is_automated field to false 2024-03-04 10:15:59 +01:00
reports
restartmanager fix duplicate words (dupwords) 2024-03-07 10:57:03 +01:00
runconfig api: remove handling of HostConfig on POST /containers/{id}/start (api < v1.24) 2024-02-06 18:44:44 +01:00
testutil api/types: move image options to api/types/image 2024-01-24 00:10:33 +01:00
vendor vendor: golang.org/x/net v0.22.0, golang.org/x/crypto v0.21.0 2024-04-09 11:25:24 +02:00
volume volume: Don't decrement refcount below 0 2024-03-07 20:42:20 +01:00
.dockerignore
.gitattributes
.gitignore
.golangci.yml golangci-lint: enable dupword linter 2024-03-07 11:44:27 +01:00
.mailmap
AUTHORS
codecov.yml
CONTRIBUTING.md
docker-bake.hcl
Dockerfile update containerd binary to v1.7.15 2024-04-08 18:09:01 +02:00
Dockerfile.simple update to go1.21.9 2024-04-04 10:15:00 +02:00
Dockerfile.windows update containerd binary to v1.7.15 2024-04-08 18:09:01 +02:00
Jenkinsfile
LICENSE Update LICENSE 2018-09-12 14:27:53 +01:00
MAINTAINERS
Makefile Makefile: generate-files: fix check for empty TMP_OUT 2024-03-15 17:54:54 +01:00
NOTICE
README.md
ROADMAP.md
SECURITY.md
TESTING.md
vendor.mod vendor: golang.org/x/net v0.22.0, golang.org/x/crypto v0.21.0 2024-04-09 11:25:24 +02:00
vendor.sum vendor: golang.org/x/net v0.22.0, golang.org/x/crypto v0.21.0 2024-04-09 11:25:24 +02:00
VENDORING.md

The Moby Project

Moby Project logo

Moby is an open-source project created by Docker to enable and accelerate software containerization.

It provides a "Lego set" of toolkit components, the framework for assembling them into custom container-based systems, and a place for all container enthusiasts and professionals to experiment and exchange ideas. Components include container build tools, a container registry, orchestration tools, a runtime and more, and these can be used as building blocks in conjunction with other tools and projects.

Principles

Moby is an open project guided by strong principles, aiming to be modular, flexible and without too strong an opinion on user experience. It is open to the community to help set its direction.

  • Modular: the project includes lots of components that have well-defined functions and APIs that work together.
  • Batteries included but swappable: Moby includes enough components to build fully featured container systems, but its modular architecture ensures that most of the components can be swapped by different implementations.
  • Usable security: Moby provides secure defaults without compromising usability.
  • Developer focused: The APIs are intended to be functional and useful to build powerful tools. They are not necessarily intended as end user tools but as components aimed at developers. Documentation and UX is aimed at developers not end users.

Audience

The Moby Project is intended for engineers, integrators and enthusiasts looking to modify, hack, fix, experiment, invent and build systems based on containers. It is not for people looking for a commercially supported system, but for people who want to work and learn with open source code.

Relationship with Docker

The components and tools in the Moby Project are initially the open source components that Docker and the community have built for the Docker Project. New projects can be added if they fit with the community goals. Docker is committed to using Moby as the upstream for the Docker Product. However, other projects are also encouraged to use Moby as an upstream, and to reuse the components in diverse ways, and all these uses will be treated in the same way. External maintainers and contributors are welcomed.

The Moby project is not intended as a location for support or feature requests for Docker products, but as a place for contributors to work on open source code, fix bugs, and make the code more useful. The releases are supported by the maintainers, community and users, on a best efforts basis only, and are not intended for customers who want enterprise or commercial support; Docker EE is the appropriate product for these use cases.


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.