1. 18 Oct, 2016 1 commit
  2. 15 Jun, 2016 1 commit
  3. 28 May, 2016 1 commit
  4. 31 Mar, 2016 1 commit
  5. 11 Mar, 2016 1 commit
  6. 07 Mar, 2016 1 commit
    • Eric Yang's avatar
      command correction in documentation · 85eadae1
      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: default avatarEric Yang <EricYang@EricdeMacBook-Pro.local>
      85eadae1
  7. 12 Dec, 2015 1 commit
  8. 07 Oct, 2015 1 commit
  9. 28 Aug, 2015 2 commits
  10. 07 Aug, 2015 1 commit
  11. 31 Jul, 2015 1 commit
  12. 30 Jul, 2015 2 commits
  13. 21 Jul, 2015 1 commit
  14. 17 Jun, 2015 1 commit
    • Ahmet Alp Balkan's avatar
      storage/driver/azure: Update vendored Azure SDK · daa22cac
      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. :smile:
      
       ). This also must be obsolete
      now.
      
      Fixes #620, #175.
      Signed-off-by: default avatarAhmet Alp Balkan <ahmetalpbalkan@gmail.com>
      daa22cac
  15. 15 Jun, 2015 1 commit
  16. 11 Jun, 2015 1 commit
  17. 04 Jun, 2015 1 commit
  18. 03 Jun, 2015 1 commit
    • Stephen J Day's avatar
      Build environment requires proper checkout of project · 4700c27e
      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: default avatarStephen J Day <stephen.day@docker.com>
      4700c27e
  19. 20 May, 2015 1 commit
    • Vincent Giersch's avatar
      Storage Driver: Ceph Object Storage (RADOS) · 394eea02
      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: default avatarVincent Giersch <vincent.giersch@ovh.net>
      394eea02
  20. 10 Apr, 2015 1 commit
    • Mary Anthony's avatar
      Breaking out README · cf9b4ab5
      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: default avatarMary Anthony <mary@docker.com>
      cf9b4ab5