|
@@ -128,17 +128,11 @@ func WithIPv6(network, ip string) func(*TestContainerConfig) {
|
|
// WithLogDriver sets the log driver to use for the container
|
|
// WithLogDriver sets the log driver to use for the container
|
|
func WithLogDriver(driver string) func(*TestContainerConfig) {
|
|
func WithLogDriver(driver string) func(*TestContainerConfig) {
|
|
return func(c *TestContainerConfig) {
|
|
return func(c *TestContainerConfig) {
|
|
- if c.HostConfig == nil {
|
|
|
|
- c.HostConfig = &containertypes.HostConfig{}
|
|
|
|
- }
|
|
|
|
c.HostConfig.LogConfig.Type = driver
|
|
c.HostConfig.LogConfig.Type = driver
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// WithAutoRemove sets the container to be removed on exit
|
|
// WithAutoRemove sets the container to be removed on exit
|
|
func WithAutoRemove(c *TestContainerConfig) {
|
|
func WithAutoRemove(c *TestContainerConfig) {
|
|
- if c.HostConfig == nil {
|
|
|
|
- c.HostConfig = &containertypes.HostConfig{}
|
|
|
|
- }
|
|
|
|
c.HostConfig.AutoRemove = true
|
|
c.HostConfig.AutoRemove = true
|
|
}
|
|
}
|