withEnv method
Sets a single environment variable key to value.
Returns this for chaining.
Implementation
DockerContainer withEnv(String key, String value) {
_env[key] = value;
return this;
}
Sets a single environment variable key to value.
Returns this for chaining.
DockerContainer withEnv(String key, String value) {
_env[key] = value;
return this;
}