-
Notifications
You must be signed in to change notification settings - Fork 441
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Docker] add dockerEnvVars support #1137
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot for your pull request 😍 . The overall code looks pretty good. There are only some minor questions.
The only thing that's missing is the settings documentation. You can add it to the docker.rst format
@@ -10,7 +10,6 @@ import com.typesafe.sbt.packager.linux.LinuxPlugin.autoImport.{daemonUser, defau | |||
import com.typesafe.sbt.packager.universal.UniversalPlugin | |||
import com.typesafe.sbt.packager.universal.UniversalPlugin.autoImport.stage | |||
import com.typesafe.sbt.SbtNativePackager.Universal | |||
import com.typesafe.sbt.packager.Compat._ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if this compiles with sbt 0.13.x
@@ -61,7 +60,7 @@ object DockerPlugin extends AutoPlugin { | |||
*/ | |||
val UnixSeparatorChar = '/' | |||
|
|||
override def requires = UniversalPlugin | |||
override def requires: UniversalPlugin.type = UniversalPlugin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The more generic type would be Plugins
@muuki88 applied your requests and added |
Perfectly done pull request 👍 thanks a lot. Will release this ASAP |
added docker environment variables support