2014-12-02 01:36:20 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
_ "net/http/pprof"
|
|
|
|
|
2015-08-20 20:56:36 +00:00
|
|
|
"github.com/docker/distribution/registry"
|
2015-06-11 02:40:05 +00:00
|
|
|
_ "github.com/docker/distribution/registry/auth/htpasswd"
|
2015-02-11 02:14:23 +00:00
|
|
|
_ "github.com/docker/distribution/registry/auth/silly"
|
|
|
|
_ "github.com/docker/distribution/registry/auth/token"
|
2015-07-29 18:12:01 +00:00
|
|
|
_ "github.com/docker/distribution/registry/proxy"
|
2015-06-11 22:30:18 +00:00
|
|
|
_ "github.com/docker/distribution/registry/storage/driver/azure"
|
2015-02-11 02:14:23 +00:00
|
|
|
_ "github.com/docker/distribution/registry/storage/driver/filesystem"
|
2015-07-20 17:45:15 +00:00
|
|
|
_ "github.com/docker/distribution/registry/storage/driver/gcs"
|
2015-02-11 02:14:23 +00:00
|
|
|
_ "github.com/docker/distribution/registry/storage/driver/inmemory"
|
2015-03-03 16:57:52 +00:00
|
|
|
_ "github.com/docker/distribution/registry/storage/driver/middleware/cloudfront"
|
2015-05-11 15:26:51 +00:00
|
|
|
_ "github.com/docker/distribution/registry/storage/driver/oss"
|
2015-02-11 02:14:23 +00:00
|
|
|
_ "github.com/docker/distribution/registry/storage/driver/s3"
|
2015-05-11 16:11:47 +00:00
|
|
|
_ "github.com/docker/distribution/registry/storage/driver/swift"
|
2014-12-02 01:36:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2015-08-20 22:43:08 +00:00
|
|
|
registry.Cmd.Execute()
|
2014-12-02 01:36:20 +00:00
|
|
|
}
|