DockerCLI/cli/config/credentials/default_store_linux.go

15 lines
232 B
Go

package credentials
import (
"github.com/docker/docker-credential-helpers/pass"
)
func defaultCredentialsStore() string {
passStore := pass.Pass{}
if passStore.CheckInitialized() {
return "pass"
}
return "secretservice"
}