You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, the packager takes advantage of features that were only added in Docker v1.10. The packager uses a docker build command of the form docker build -t [version] -t [latest] ., which lists multiple tags:
The documentation for the Docker packager states that Docker v1.3 or higher is required, as seen here:
https://github.com/sbt/sbt-native-packager/blob/2c3946a235ee35b8f19e9a985a6ea3fc1ae362b0/src/sphinx/formats/docker.rst
However, the packager takes advantage of features that were only added in Docker v1.10. The packager uses a docker build command of the form
docker build -t [version] -t [latest] .
, which lists multiple tags:https://github.com/sbt/sbt-native-packager/blob/master/src/main/scala/com/typesafe/sbt/packager/docker/DockerPlugin.scala#L92-L97
However, support for multiple tags with the build command was only added in Docker v1.10:
moby/moby#15780
I'm not sure if the preference would be to modify the code to support Docker v1.3 as stated, or to update the documentation to require v1.10.
The text was updated successfully, but these errors were encountered: