diff --git a/container/trust.go b/container/trust.go index 6871333..9747528 100644 --- a/container/trust.go +++ b/container/trust.go @@ -87,7 +87,7 @@ func ParseServerAddress(ref string) (string, error) { // on the settings provided in the configuration file. func CredentialsStore(configFile configfile.ConfigFile) credentials.Store { if configFile.CredentialsStore != "" { - return credentials.NewNativeStore(&configFile) + return credentials.NewNativeStore(&configFile, configFile.CredentialsStore) } return credentials.NewFileStore(&configFile) }