1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/pkg
Phil Estes 442b45628e Add user namespace (mapping) support to the Docker engine
Adds support for the daemon to handle user namespace maps as a
per-daemon setting.

Support for handling uid/gid mapping is added to the builder,
archive/unarchive packages and functions, all graphdrivers (except
Windows), and the test suite is updated to handle user namespace daemon
rootgraph changes.

Docker-DCO-1.1-Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com> (github: estesp)
2015-10-09 17:47:37 -04:00
..
ansiescape
archive Add user namespace (mapping) support to the Docker engine 2015-10-09 17:47:37 -04:00
broadcaster Move types from progressreader and broadcastwriter to broadcaster 2015-10-06 22:20:07 -04:00
chrootarchive Add user namespace (mapping) support to the Docker engine 2015-10-09 17:47:37 -04:00
devicemapper devmapper: Implement deferred deletion functionality 2015-10-06 17:37:21 -04:00
directory Add user namespace (mapping) support to the Docker engine 2015-10-09 17:47:37 -04:00
discovery Add TLS support for discovery backend 2015-10-07 16:01:00 -07:00
fileutils
graphdb
homedir
httputils
idtools Add utility/support package for user namespace support 2015-10-09 17:44:47 -04:00
integration Timeouts are causing tests to fail differently. GCCGO CI. 2015-10-08 15:14:56 +00:00
ioutils Abstract builder and implement server-side dockerfile builder 2015-10-06 19:10:19 -04:00
jsonlog
jsonmessage Revert "Merge pull request #16228 from duglin/ContextualizeEvents" 2015-09-29 14:26:51 -04:00
listenbuffer
longpath Windows: Fixing longpath hanlding of UNC paths. 2015-09-30 19:36:08 -07:00
mflag bump libcontainer to 902c012e85cdae6bb68d8c7a0df69a42f818ce96 2015-10-06 17:55:09 +02:00
mount
namesgenerator Merge pull request #16367 from Morgy93/names-generator 2015-10-02 11:29:09 -07:00
nat
parsers Validate --cpuset-cpus, --cpuset-mems 2015-09-27 16:38:58 +02:00
pidfile
plugins Add user namespace (mapping) support to the Docker engine 2015-10-09 17:47:37 -04:00
pools
progressreader Move types from progressreader and broadcastwriter to broadcaster 2015-10-06 22:20:07 -04:00
promise
proxy
pubsub
random
reexec
signal
sockets
stdcopy Added test coverage to StdCopy closes #11584 2015-09-25 11:15:45 +02:00
streamformatter
stringid
stringutils
symlink
sysinfo Validate --cpuset-cpus, --cpuset-mems 2015-09-27 16:38:58 +02:00
system Fixed file modified time not changing on Windows 2015-10-01 10:45:32 -07:00
tailfile
tarsum
term
timeoutconn
timeutils
tlsconfig
truncindex graph: add parent img refcount for faster rmi 2015-10-07 19:09:44 +02:00
ulimit
units
urlutil
useragent
version
README.md

pkg/ is a collection of utility packages used by the Docker project without being specific to its internals.

Utility packages are kept separate from the docker core codebase to keep it as small and concise as possible. If some utilities grow larger and their APIs stabilize, they may be moved to their own repository under the Docker organization, to facilitate re-use by other projects. However that is not the priority.

The directory pkg is named after the same directory in the camlistore project. Since Brad is a core Go maintainer, we thought it made sense to copy his methods for organizing Go code :) Thanks Brad!

Because utility packages are small and neatly separated from the rest of the codebase, they are a good place to start for aspiring maintainers and contributors. Get in touch if you want to help maintain them!