Merge pull request #18721 from tiborvass/remove-dependencies-from-builder

Remove image and daemon dependencies from builder
This commit is contained in:
Vincent Demeester 2015-12-18 17:19:55 +01:00
Родитель b4433e46e2 ed2ccf92bd
Коммит 7e5e4dce4d
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -8,6 +8,14 @@ import (
"github.com/docker/docker/runconfig"
)
// ContainerCreateConfig is the parameter set to ContainerCreate()
type ContainerCreateConfig struct {
Name string
Config *runconfig.Config
HostConfig *runconfig.HostConfig
AdjustCPUShares bool
}
// ContainerRmConfig holds arguments for the container remove
// operation. This struct is used to tell the backend what operations
// to perform.