class DockerOperations extends AnyRef
High level docker operations, consisting of multiple sub operations.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- DockerOperations
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new DockerOperations(dockerClient: DockerClient)(implicit akkaRuntime: AkkaRuntime)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
def
createAndRunContainer(containerDefinition: ContainerDefinition): Future[CreateContainerResponse]
Creates a container, pulling if necessary and runs it.
-
def
createContainer(containerDefinition: ContainerDefinition): Future[CreateContainerResponse]
Creates a container, pulling if necessary.
-
def
ensureContainer(name: String, createContainerRequest: CreateContainerRequest): Future[String]
Ensures the existance of a running container, returns the ID if it's already running.
-
def
ensureNetwork(name: String, createNetworkRequest: CreateNetworkRequest): Future[String]
Ensures the existance of a network, returns the Id.
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
executePullPolicy(pullPolicy: PullPolicy, image: String): Future[Unit]
Execute a Pull policy for an image.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def killContainer(id: String): Future[Unit]
-
def
listContainers(all: Boolean, labelFilters: Seq[(String, String)]): Future[Vector[ListContainerResponseRow]]
List containers.
List containers.
- all
if true, only running containers are returned.
- val logger: Logger
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
pullImage(image: String): Future[Unit]
Pull an image.
-
def
pullImageIfNotPresent(image: String): Future[Unit]
Pull the image if not present.
- def removeContainer(id: String): Future[Unit]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
waitContainer(container: String, timeout: FiniteDuration): Future[ContainerWaitResponse]
Wait for a container.
Wait for a container. This works around TimeoutExceptions from Akka Http.