AgentContainer class

Container runnable representation on the agent side.

Constructors

AgentContainer({List<String>? commands, String? entrypoint, String? imageUri, String? options, List<String>? volumes})
AgentContainer.fromJson(Map json_)

Properties

commands List<String>?
Overrides the CMD specified in the container.
getter/setter pair
entrypoint String?
Overrides the ENTRYPOINT specified in the container.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
imageUri String?
The URI to pull the container image from.
getter/setter pair
options String?
Arbitrary additional options to include in the "docker run" command when running this container, e.g. "--network host".
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
volumes List<String>?
Volumes to mount (bind mount) from the host machine files or directories into the container, formatted to match docker run's --volume option, e.g. /foo:/bar, or /foo:/bar:ro
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited