Packages

c

ai.mantik.executor.docker.api

DockerOperations

class DockerOperations extends AnyRef

High level docker operations, consisting of multiple sub operations.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DockerOperations
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DockerOperations(dockerClient: DockerClient)(implicit akkaRuntime: AkkaRuntime)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  6. def createAndRunContainer(containerDefinition: ContainerDefinition): Future[CreateContainerResponse]

    Creates a container, pulling if necessary and runs it.

  7. def createContainer(containerDefinition: ContainerDefinition): Future[CreateContainerResponse]

    Creates a container, pulling if necessary.

  8. def ensureContainer(name: String, createContainerRequest: CreateContainerRequest): Future[String]

    Ensures the existance of a running container, returns the ID if it's already running.

  9. def ensureNetwork(name: String, createNetworkRequest: CreateNetworkRequest): Future[String]

    Ensures the existance of a network, returns the Id.

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def executePullPolicy(pullPolicy: PullPolicy, image: String): Future[Unit]

    Execute a Pull policy for an image.

  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def killContainer(id: String): Future[Unit]
  17. def listContainers(all: Boolean, labelFilters: Seq[(String, String)]): Future[Vector[ListContainerResponseRow]]

    List containers.

    List containers.

    all

    if true, only running containers are returned.

  18. val logger: Logger
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. def pullImage(image: String): Future[Unit]

    Pull an image.

  23. def pullImageIfNotPresent(image: String): Future[Unit]

    Pull the image if not present.

  24. def removeContainer(id: String): Future[Unit]
  25. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. def waitContainer(container: String, timeout: FiniteDuration): Future[ContainerWaitResponse]

    Wait for a container.

    Wait for a container. This works around TimeoutExceptions from Akka Http.

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped