DockerAlias
com.typesafe.sbt.packager.docker.DockerAlias
case class DockerAlias(registryHost: Option[String], username: Option[String], name: String, tag: Option[String])
This class represents a Docker alias. It generates a string in the form of
[REGISTRY_HOST/][USERNAME/]NAME[:TAG]
, e.g. ''my-registry.com:1234/my-user/my-service:1.0.0'' or just ''my-service:1.0.0''.
Value parameters
- name
-
Name of the image, e.g. the artifact name
- registryHost
-
Optional hostname of the registry (including port if applicable)
- tag
-
Optional tag for the image, e.g. the version
- username
-
Optional username or other qualifier
Attributes
- Graph
-
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass Any
Members list
In this article