1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/pkg
Tibor Vass bfccd328be Merge pull request #15100 from calavera/fix_reader_timeout
Fix reset timeout for buffer readers.
2015-07-30 13:18:06 -04:00
..
ansiescape
archive Merge pull request #15040 from vbatts/vbatts-double-decompress-fix 2015-07-29 16:48:02 -07:00
broadcastwriter
chrootarchive Windows: Daemon build is broken 2015-07-29 20:08:51 -07:00
devicemapper
directory make docker compile on freebsd 2015-07-29 21:25:56 +03:00
fileutils
graphdb
homedir
httputils
ioutils Fix reset timeout for buffer readers. 2015-07-28 14:30:18 -07:00
jsonlog
jsonmessage
listenbuffer
mflag Fix golint for pkg/mflag 2015-07-28 15:32:42 +02:00
mount
namesgenerator Use global random *rand.Rand instance in pkg 2015-07-29 09:30:48 -07:00
nat
parsers make docker compile on freebsd 2015-07-29 21:25:56 +03:00
pidfile Lint on pkg/* packages 2015-07-27 21:26:21 +02:00
plugins Lint on pkg/* packages 2015-07-27 21:26:21 +02:00
pools Lint on pkg/* packages 2015-07-27 21:26:21 +02:00
progressreader Lint on pkg/* packages 2015-07-27 21:26:21 +02:00
promise
proxy Lint on pkg/* packages 2015-07-27 21:26:21 +02:00
pubsub
random Add global instance of *(math/rand).Rand and Reader 2015-07-28 22:30:57 -07:00
reexec make docker compile on freebsd 2015-07-29 21:25:56 +03:00
signal Lint on pkg/* packages 2015-07-27 21:26:21 +02:00
sockets make docker compile on freebsd 2015-07-29 21:25:56 +03:00
stdcopy
streamformatter Lint on pkg/* packages 2015-07-27 21:26:21 +02:00
stringid Add GenerateNonCryptoID function to avoid entropy exhaustion 2015-07-28 22:31:01 -07:00
stringutils Use global random *rand.Rand instance in pkg 2015-07-29 09:30:48 -07:00
symlink
sysinfo make docker compile on freebsd 2015-07-29 21:25:56 +03:00
system make docker compile on freebsd 2015-07-29 21:25:56 +03:00
systemd Lint on pkg/* packages 2015-07-27 21:26:21 +02:00
tailfile Lint on pkg/* packages 2015-07-27 21:26:21 +02:00
tarsum Lint on pkg/* packages 2015-07-27 21:26:21 +02:00
term Fix golint nit in term_windows.go 2015-07-27 17:40:49 -07:00
timeoutconn Lint on pkg/* packages 2015-07-27 21:26:21 +02:00
timeutils Lint on pkg/* packages 2015-07-27 21:26:21 +02:00
tlsconfig
truncindex Replace GenerateRandomID with GenerateNonCryptoID 2015-07-28 22:31:01 -07:00
ulimit Lint on pkg/* packages 2015-07-27 21:26:21 +02:00
units Lint on pkg/* packages 2015-07-27 21:26:21 +02:00
urlutil Lint on pkg/* packages 2015-07-27 21:26:21 +02:00
useragent Lint on pkg/* packages 2015-07-27 21:26:21 +02:00
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!