Merge pull request #323 from jwendell/24355

types/configs: Add Env to ExecConfig struct
This commit is contained in:
John Howard 2016-08-30 13:30:08 -07:00 коммит произвёл GitHub
Родитель 9140772fe5 6f11843155
Коммит 003df11958
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -49,6 +49,7 @@ type ExecConfig struct {
AttachStdout bool // Attach the standard output
Detach bool // Execute in detach mode
DetachKeys string // Escape keys for detach
Env []string // Environment variables
Cmd []string // Execution commands and args
}