Fix LinuxRuntime field

Signed-off-by: Alexander Morozov <lk4d4@docker.com>
This commit is contained in:
Alexander Morozov 2015-08-31 13:37:20 -07:00
parent e9cb5644fa
commit cc8a99757d
1 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@ import "os"
// LinuxRuntimeSpec is the full specification for linux containers.
type LinuxRuntimeSpec struct {
RuntimeSpec
// Linux is platform specific configuration for linux based containers.
LinuxRuntime Linux `json:"linux"`
// LinuxRuntime is platform specific configuration for linux based containers.
Linux LinuxRuntime `json:"linux"`
}
type LinuxRuntime struct {