moby--moby/pkg
Alexander Morozov cc207aa136 Merge pull request #17185 from cpuguy83/use_finer_locking_for_volume_store
Fix potential races in the volume store
2015-11-06 08:48:12 -08:00
..
ansiescape
archive Fix go vet warnings 2015-11-02 08:28:34 -08:00
broadcaster Move types from progressreader and broadcastwriter to broadcaster 2015-10-06 22:20:07 -04:00
chrootarchive Merge pull request #17035 from estesp/fix-build-dir-perms 2015-10-20 08:57:19 -07:00
devicemapper Fix golint warnings 2015-11-02 08:02:25 -08:00
directory Add user namespace (mapping) support to the Docker engine 2015-10-09 17:47:37 -04:00
discovery Enhancing --cluster-advertise to support <interface-name> 2015-10-27 11:03:22 -07:00
fileutils Windows: Fix warning on info 2015-09-18 13:39:12 -07:00
graphdb Merge pull request #16054 from jfrazelle/update-sqlite3-dep 2015-09-03 19:20:57 -07:00
homedir
httputils Update httputils tests 2015-09-09 14:59:25 +02:00
idtools Correct build-time directory creation with user namespaced daemon 2015-10-20 08:59:48 -04:00
integration Vendoring shakers library and update go-check 2015-10-17 14:28:08 +02:00
ioutils Avoid panic on write after close in http 2015-11-02 18:14:43 -08:00
jsonlog add labels/env log option for jsonfile 2015-10-12 21:12:46 +02:00
jsonmessage Revert "Merge pull request #16228 from duglin/ContextualizeEvents" 2015-09-29 14:26:51 -04:00
listenbuffer
locker Fix potential races in the volume store 2015-11-04 16:59:47 -05:00
longpath Windows: Fixing longpath hanlding of UNC paths. 2015-09-30 19:36:08 -07:00
mflag Change 'docker run' exit codes to distinguish docker/contained errors 2015-11-04 15:18:50 -05:00
mount
namesgenerator Add Bassi 2015-10-23 01:32:47 +02:00
nat
parsers Fix panic in parsing /etc/os-release 2015-11-05 19:59:29 +01: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 Windows: [TP4] docker kill handling 2015-10-13 16:04:49 -07:00
sockets
stdcopy Added test coverage to StdCopy closes #11584 2015-09-25 11:15:45 +02:00
streamformatter
stringid Fix golint warnings 2015-11-02 08:02:25 -08:00
stringutils pkg: stringutils: Add more tests to strslice 2015-09-01 20:27:45 +02:00
symlink Windows: Fix long path handling for docker build 2015-09-15 10:58:11 -07:00
sysinfo Validate --cpuset-cpus, --cpuset-mems 2015-09-27 16:38:58 +02:00
system Log error from unmountVolumes on cleanup 2015-11-02 14:11:42 -08:00
tailfile
tarsum Fix golint warnings 2015-11-02 08:02:25 -08:00
term Remove unused variable, fix #16310 2015-09-15 22:20:10 +02:00
timeoutconn
timeutils
tlsconfig Fix golint warnings 2015-11-02 08:02:25 -08:00
truncindex Do not rely on string comparison in truncindex 2015-11-04 11:34:05 -08:00
ulimit
units
urlutil
useragent
version
README.md

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!