forked from TrueCloudLab/distribution
Merge pull request #26 from stevvooe/move-registry-package
Move registry package out of repo root
This commit is contained in:
commit
5f863238c0
14 changed files with 8 additions and 1 deletions
|
@ -12,10 +12,10 @@ import (
|
||||||
"github.com/gorilla/handlers"
|
"github.com/gorilla/handlers"
|
||||||
"github.com/yvasiyarov/gorelic"
|
"github.com/yvasiyarov/gorelic"
|
||||||
|
|
||||||
"github.com/docker/distribution"
|
|
||||||
_ "github.com/docker/distribution/auth/silly"
|
_ "github.com/docker/distribution/auth/silly"
|
||||||
_ "github.com/docker/distribution/auth/token"
|
_ "github.com/docker/distribution/auth/token"
|
||||||
"github.com/docker/distribution/configuration"
|
"github.com/docker/distribution/configuration"
|
||||||
|
"github.com/docker/distribution/registry"
|
||||||
_ "github.com/docker/distribution/storagedriver/filesystem"
|
_ "github.com/docker/distribution/storagedriver/filesystem"
|
||||||
_ "github.com/docker/distribution/storagedriver/inmemory"
|
_ "github.com/docker/distribution/storagedriver/inmemory"
|
||||||
)
|
)
|
||||||
|
|
7
doc.go
Normal file
7
doc.go
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
// Package distribution will define the interfaces for the components of
|
||||||
|
// docker distribution. The goal is to allow users to reliably package, ship
|
||||||
|
// and store content related to docker images.
|
||||||
|
//
|
||||||
|
// This is currently a work in progress. More details are availalbe in the
|
||||||
|
// README.md.
|
||||||
|
package distribution
|
Loading…
Reference in a new issue