NewDockerEnvironment creates new, isolated docker environment. The `name` option is now deprecated and is equivalent to `e2e.WithName()`. Feel free to leave it empty. Deprecated: Use New instead.
(name string, opts ...EnvironmentOption)
| 81 | // The `name` option is now deprecated and is equivalent to `e2e.WithName()`. Feel free to leave it empty. |
| 82 | // Deprecated: Use New instead. |
| 83 | func NewDockerEnvironment(name string, opts ...EnvironmentOption) (_ *DockerEnvironment, err error) { |
| 84 | return New(append(opts, WithName(name))...) |
| 85 | } |
| 86 | |
| 87 | // New creates new, isolated docker environment. |
| 88 | func New(opts ...EnvironmentOption) (_ *DockerEnvironment, err error) { |