mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
8 lines
311 B
Go
8 lines
311 B
Go
package client
|
|
|
|
// ImageCreateOptions holds information to create images.
|
|
type ImageCreateOptions struct {
|
|
RegistryAuth string // RegistryAuth is the base64 encoded credentials for the registry.
|
|
Platform string // Platform is the target platform of the image if it needs to be pulled from the registry.
|
|
}
|