Merge pull request #364 from stevvooe/add-tty-and-groups

swarm/container: add support for TTY and supplementary groups
This commit is contained in:
Vincent Demeester 2016-08-14 19:14:43 +02:00 коммит произвёл GitHub
Родитель fdb5acc8f4 2a1311921a
Коммит 3ae7fcd11e
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -15,6 +15,8 @@ type ContainerSpec struct {
Env []string `json:",omitempty"`
Dir string `json:",omitempty"`
User string `json:",omitempty"`
Groups []string `json:",omitempty"`
TTY bool `json:",omitempty"`
Mounts []mount.Mount `json:",omitempty"`
StopGracePeriod *time.Duration `json:",omitempty"`
}