Packages

final case class Image(name: Name, tag: Option[Tag], digest: Option[Digest] = None) extends Product with Serializable

Source
Docker.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Image
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Image(name: Name, tag: Option[Tag], digest: Option[Digest] = None)

Value Members

  1. val digest: Option[Digest]
  2. val name: Name
  3. val registry: Option[RegistryURI]

    If the name of the image has the registry location encoded into it, then return it.

    If the name of the image has the registry location encoded into it, then return it. Otherwise, if shorthand is used assume we're dealing with a public docker image and prepend index.docker.io and yield. Anything else should be invalid so we'll just return None there.

  4. val tag: Option[Tag]
  5. def to(uri: RegistryURI): Image

    This is a convenience function that allows you to easily retarget a given docker image to a different registry location (e.g.

    This is a convenience function that allows you to easily retarget a given docker image to a different registry location (e.g. from index.docker.com to your internal private registry).

  6. def toString(): String
    Definition Classes
    Image → AnyRef → Any