- 18 Oct, 2016 1 commit
-
-
Jihoon Chung authored
Signed-off-by:
Jihoon Chung <jihoon@gmail.com>
-
- 15 Jun, 2016 1 commit
-
-
Sven Dowideit authored
Closes #1776 Signed-off-by:
Sven Dowideit <SvenDowideit@home.org.au>
-
- 28 May, 2016 1 commit
-
-
Sven Dowideit authored
And move menu entry definition into a page that the user has no reason to navigate to Signed-off-by:
Sven Dowideit <SvenDowideit@home.org.au>
-
- 31 Mar, 2016 1 commit
-
-
Aaron Lehmann authored
Now that we are using "native" Go vendoring, there is no need to manipulate GOPATH. Fixes #1586 Signed-off-by:
Aaron Lehmann <aaron.lehmann@docker.com>
-
- 11 Mar, 2016 1 commit
-
-
Brian Bland authored
Signed-off-by:
Brian Bland <brian.bland@docker.com>
-
- 07 Mar, 2016 1 commit
-
-
Eric Yang authored
the original ```$GOPATH/bin/registry $GOPATH/src/github.com/docker/distribution/cmd/registry/config-example.yml``` leads to the error like ``` Error: unknown command "/Users/EricYang/go/src/github.com/docker/distribution/cmd/registry/config-example.yml" for "registry" Run 'registry --help' for usage. ``` I think the correct command should be ```registry serve``` Signed-off-by:
Eric Yang <EricYang@EricdeMacBook-Pro.local>
-
- 12 Dec, 2015 1 commit
-
-
Sebastiaan van Stijn authored
These headers were rendered as body text because there was no space, but a "tab" after the `#`. Signed-off-by:
Sebastiaan van Stijn <github@gone.nl>
-
- 07 Oct, 2015 1 commit
-
-
harche authored
Signed-off-by:
Harshal <p.harshal@gmail.com>
-
- 28 Aug, 2015 2 commits
-
-
Olivier Gambier authored
Signed-off-by:
Olivier Gambier <olivier@docker.com>
-
Olivier Gambier authored
Making metadata: - more consistent - more specific (fixed copy pasting) - refine coverage Insecure information cleanup Removing no longer used files: - mkdocs is gone - the registry diagram is not used, and is a bit silly :) Minor fixes Fixing links Recipes: - harmonized code sections style to the rest of the docs - harmonized recipe "style" - listing new recipes Enhance deploying Signed-off-by:
Olivier Gambier <olivier@docker.com>
-
- 07 Aug, 2015 1 commit
-
-
Stephen J Day authored
We are headed in a different direction. The dist tool analog will not be a part of this repository. Signed-off-by:
Stephen J Day <stephen.day@docker.com>
-
- 31 Jul, 2015 1 commit
-
-
Alex Chan authored
Signed-off-by:
Alex Chan <alex.chan@metaswitch.com>
-
- 30 Jul, 2015 2 commits
-
-
Aaron Lehmann authored
Better for sort order. Signed-off-by:
Aaron Lehmann <aaron.lehmann@docker.com>
-
Aaron Lehmann authored
Rename config.yml to dev-config.yml Add example-config.yml, a simple configuration file for the official This was originally made for the the distribution-library-image repo, but is being moved here to make sure it stays in sync. Update Dockerfile and docs for the rename. Signed-off-by:
Aaron Lehmann <aaron.lehmann@docker.com>
-
- 21 Jul, 2015 1 commit
-
-
Florentin Raud authored
Since the actual port is 5003, it would make sense to name it local-5003 instead of local-8082 Signed-off-by:
Florentin Raud <florentin.raud@gmail.com>
-
- 17 Jun, 2015 1 commit
-
-
Ahmet Alp Balkan authored
This change refreshes the updated version of Azure SDK for Go that has the latest changes. I manually vendored the new SDK (github.com/Azure/azure-sdk-for-go) and I removed `management/` `core/` packages manually simply because they're not used here and they have a fork of `net/http` and `crypto/tls` for a particular reason. It was introducing a 44k SLOC change otherwise... This also undoes the `include_azure` flag (actually Steven removed the driver from imports but forgot to add the build flag apparently, so the flag wasn't really including azure.
). This also must be obsolete now. Fixes #620, #175. Signed-off-by:Ahmet Alp Balkan <ahmetalpbalkan@gmail.com>
-
- 15 Jun, 2015 1 commit
-
-
Mary Anthony authored
Updating for tooling tests Updating with the new sed scripts to protect links updating with new image Updating with comments Signed-off-by:
Mary Anthony <mary@docker.com>
-
- 11 Jun, 2015 1 commit
-
-
Olivier Gambier authored
Signed-off-by:
Olivier Gambier <olivier@docker.com>
-
- 04 Jun, 2015 1 commit
-
-
Stephen J Day authored
Signed-off-by:
Stephen J Day <stephen.day@docker.com>
-
- 03 Jun, 2015 1 commit
-
-
Stephen J Day authored
This clarifies the importance of properly setting a Go build environment when building targets. Typically, users seem to editorialize the checkout location, either ignoring the first section or have limited experience with the Go development environment. We clarify the checkout requirements and point to the documentation on how to setup Go. Signed-off-by:
Stephen J Day <stephen.day@docker.com>
-
- 20 May, 2015 1 commit
-
-
Vincent Giersch authored
This driver implements the storagedriver.StorageDriver interface and uses Ceph Object Storage as storage backend. Since RADOS is an object storage and no hierarchy notion, the following convention is used to keep the filesystem notions stored in this backend: * All the objects data are stored with opaque UUID names prefixed (e.g. "blob:d3d232ff-ab3a-4046-9ab7-930228d4c164). * All the hierarchy information are stored in rados omaps, where the omap object identifier is the virtual directory name, the keys in a specific are the relative filenames and the values the blob object identifier (or empty value for a sub directory). e.g. For the following hierarchy: /directory1 /directory1/object1 /directory1/object2 /directory1/directory2/object3 The omap "/directory1" will contains the following key / values: - "object1" "blob:d3d232ff-ab3a-4046-9ab7-930228d4c164" - "object2" "blob:db2e359d-4af0-4bfb-ba1d-d2fd029866a0" - "directory2" "" The omap "/directory1/directory2" will contains: - "object3" "blob:9ae2371c-81fc-4945-80ac-8bf7f566a5d9" * The MOVE is implemented by changing the reference to a specific blob in its parent virtual directory omap. This driver stripes rados objects to a fixed size (e.g. 4M). The idea is to keep small objects (as done by RBD on the top of RADOS) that will be easily synchronized accross OSDs. The information of the original object (i.e total size of the chunks) is stored as a Xattr in the first chunk object. Signed-off-by:
Vincent Giersch <vincent.giersch@ovh.net>
-
- 10 Apr, 2015 1 commit
-
-
Mary Anthony authored
Adding new material Adding in template chomped in error Cover install/deploy in README Adding in Stephen's comments Fixing you tabs! Updating with commentary from pr Updating with last minute comments Signed-off-by:
Mary Anthony <mary@docker.com>
-