0

The title says it all: sbt-docker plugin examples use both add() and addRaw(), but the documentation only mentions add(). What is addRaw() for?

Christopher Helck
  • 1,130
  • 2
  • 8
  • 23

1 Answers1

0

Seems like there is none, for the most recent version of sbt-docker, "add()" has being tag as deprecated, so you should use "addRaw()" instead.

Here is the source code.

maya.js
  • 1,147
  • 12
  • 25
  • Agreed. The most helpful thing is to try add() or addRaw() and then look at the Dockerfile that the plugin creates under target/docker and see what the commands do. – Christopher Helck Jul 22 '15 at 01:19