Skip to content

Commit

Permalink
Fix #947 Correct scope for packageName in DockerPlugin (#948)
Browse files Browse the repository at this point in the history
  • Loading branch information
muuki88 authored Mar 16, 2017
1 parent 56e2fc6 commit f5e2eb7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ object DockerPlugin extends AutoPlugin {
dockerExposedUdpPorts := Seq(),
dockerExposedVolumes := Seq(),
dockerRepository := None,
dockerAlias := DockerAlias(dockerRepository.value, None, packageName.value, Some((version in Docker).value)),
dockerAlias := DockerAlias(dockerRepository.value, None, (packageName in Docker).value, Some((version in Docker).value)),
dockerUpdateLatest := false,
dockerEntrypoint := Seq("bin/%s" format executableScriptName.value),
dockerCmd := Seq(),
Expand Down

0 comments on commit f5e2eb7

Please sign in to comment.