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