withName method

DockerContainer withName(
  1. String name
)

Assigns a fixed name to the container.

Returns this for chaining.

Implementation

DockerContainer withName(String name) {
  _name = name;
  return this;
}