зеркало из https://github.com/docker/hub-tool.git
64 строки
1.5 KiB
Go
64 строки
1.5 KiB
Go
/*
|
|
Copyright 2020 Docker Hub Tool authors
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package hub
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
|
|
"github.com/docker/docker/api/types/registry"
|
|
)
|
|
|
|
//Instance stores all the specific pieces needed to dialog with Hub
|
|
type Instance struct {
|
|
APIHubBaseURL string
|
|
RegistryInfo *registry.IndexInfo
|
|
}
|
|
|
|
var (
|
|
hub = Instance{
|
|
APIHubBaseURL: "https://hub.docker.com",
|
|
RegistryInfo: ®istry.IndexInfo{
|
|
Name: "registry.docker.io",
|
|
Mirrors: nil,
|
|
Secure: true,
|
|
Official: true,
|
|
},
|
|
}
|
|
)
|
|
|
|
// getInstance returns the current hub instance, which can be overridden by
|
|
// DOCKER_REGISTRY_URL and DOCKER_REGISTRY_URL env var
|
|
func getInstance() *Instance {
|
|
apiBaseURL := os.Getenv("DOCKER_REGISTRY_URL")
|
|
reg := os.Getenv("DOCKER_REGISTRY_URL")
|
|
|
|
if apiBaseURL != "" && reg != "" {
|
|
return &Instance{
|
|
APIHubBaseURL: apiBaseURL,
|
|
RegistryInfo: ®istry.IndexInfo{
|
|
Name: reg,
|
|
Mirrors: nil,
|
|
Secure: true,
|
|
Official: false,
|
|
},
|
|
}
|
|
}
|
|
|
|
return &hub
|
|
}
|