Merge pull request #2127 from rumpl/fix-remove-context-call

Remove the call to com.docker.cli to get the default context
This commit is contained in:
Mathieu Champlon 2022-01-26 06:44:30 +01:00 коммит произвёл GitHub
Родитель b46ffa7442 bdc9d81a7a
Коммит 5f956ded9a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 3 удалений

Просмотреть файл

@ -123,9 +123,6 @@ func New(rootDir string) (Store, error) {
// Get returns the context with the given name
func (s *store) Get(name string) (*DockerContext, error) {
if name == "default" {
return dockerDefaultContext()
}
meta := filepath.Join(s.root, contextsDir, metadataDir, contextDirOf(name), metaFile)
m, err := read(meta)
if os.IsNotExist(err) {