Client wraps the Docker client, augmenting it with a few higher level convenience APIs.
| 73 | |
| 74 | // Client wraps the Docker client, augmenting it with a few higher level convenience APIs. |
| 75 | type Client struct { |
| 76 | // Configuration details. Set during initialization, never modified afterwards. |
| 77 | credentialStores map[string]*credentialStore |
| 78 | authConfigs map[string]typeReg.AuthConfig |
| 79 | |
| 80 | // System dependencies. Also set during initialization, never modified afterwards. |
| 81 | cl *client.Client |
| 82 | log *logrus.Entry |
| 83 | } |
| 84 | |
| 85 | // NewClient populates credentials from the Docker Daemon config and returns a new Client that uses |
| 86 | // them. |
nothing calls this directly
no outgoing calls
no test coverage detected