Merge pull request #279 from vieux/storage_opts_omit

add omitempty to storageopts
This commit is contained in:
Vincent Demeester 2016-06-15 09:20:34 +02:00 коммит произвёл GitHub
Родитель de0bc7ec1a a54c250af7
Коммит c1549dd086
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -303,7 +303,7 @@ type HostConfig struct {
PublishAllPorts bool // Should docker publish all exposed port for the container
ReadonlyRootfs bool // Is the container root filesystem in read-only
SecurityOpt []string // List of string values to customize labels for MLS systems, such as SELinux.
StorageOpt map[string]string // Storage driver options per container.
StorageOpt map[string]string `json:",omitempty"` // Storage driver options per container.
Tmpfs map[string]string `json:",omitempty"` // List of tmpfs (mounts) used for the container
UTSMode UTSMode // UTS namespace to use for the container
UsernsMode UsernsMode // The user namespace to use for the container