c5843b7615
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
22 lines
605 B
Go
22 lines
605 B
Go
// +build windows
|
|
|
|
package hcs
|
|
|
|
import "time"
|
|
|
|
type Configuration struct {
|
|
UseHyperV bool `json:"useHyperV,omitempty"`
|
|
|
|
Layers []string `json:"layers"`
|
|
|
|
TerminateDuration time.Duration `json:"terminateDuration",omitempty`
|
|
|
|
IgnoreFlushesDuringBoot bool `json:"ignoreFlushesDuringBoot,omitempty"`
|
|
|
|
AllowUnqualifiedDNSQuery bool `json:"allowUnqualifiedDNSQuery,omitempty"`
|
|
DNSSearchList []string `json:"dnsSearchList,omitempty"`
|
|
NetworkEndpoints []string `json:"networkEndpoints,omitempty"`
|
|
NetworkSharedContainerID string
|
|
|
|
Credentials string `json:"credentials,omitempty"`
|
|
}
|