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