final case class Image(name: Name, tag: Option[Tag], digest: Option[Digest] = None) extends Product with Serializable
- Source
- Docker.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Image
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
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[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- val digest: Option[Digest]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val name: Name
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
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.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val tag: Option[Tag]
-
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).
-
def
toString(): String
- Definition Classes
- Image → AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )