|
@@ -313,7 +313,7 @@ type HostConfig struct {
|
|
|
Runtime string `json:",omitempty"` // Runtime to use with this container
|
|
|
|
|
|
// Applicable to Windows
|
|
|
- ConsoleSize Box // Initial console size
|
|
|
+ ConsoleSize [2]uint // Initial console size (height,width)
|
|
|
Isolation Isolation // Isolation technology of the container (eg default, hyperv)
|
|
|
|
|
|
// Contains container's resources (cgroups, ulimits)
|
|
@@ -325,9 +325,3 @@ type HostConfig struct {
|
|
|
// Run a custom init inside the container, if null, use the daemon's configured settings
|
|
|
Init *bool `json:",omitempty"`
|
|
|
}
|
|
|
-
|
|
|
-// Box specifies height and width dimensions. Used for sizing of a console.
|
|
|
-type Box struct {
|
|
|
- Height uint
|
|
|
- Width uint
|
|
|
-}
|