mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
44152144ca
docker build is broken because it sends to the daemon the full cliconfig file which has only Email(s). This patch retrieves all auth configs from the credentials store. Signed-off-by: Antonio Murdaca <runcom@redhat.com>
17 lines
571 B
Go
17 lines
571 B
Go
package credentials
|
|
|
|
import (
|
|
"github.com/docker/engine-api/types"
|
|
)
|
|
|
|
// Store is the interface that any credentials store must implement.
|
|
type Store interface {
|
|
// Erase removes credentials from the store for a given server.
|
|
Erase(serverAddress string) error
|
|
// Get retrieves credentials from the store for a given server.
|
|
Get(serverAddress string) (types.AuthConfig, error)
|
|
// GetAll retrieves all the credentials from the store.
|
|
GetAll() (map[string]types.AuthConfig, error)
|
|
// Store saves credentials in the store.
|
|
Store(authConfig types.AuthConfig) error
|
|
}
|