Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Docker Data Volume for SBT Dependencies

I am using docker for continuous integration of a Scala project. Inside the container I am building the project and creating a distribution with "sbt dist".

This takes ages pulling down all the dependencies and I would like to use a docker data volume as mentioned here: http://docs.docker.io/en/latest/use/working_with_volumes/

However, I don't understand how I could get SBT to put the jar files in the volume, or how SBT would know how to read them from that volume.

like image 942
user2668128 Avatar asked Feb 27 '14 13:02

user2668128


2 Answers

SBT uses ivy to resolve project dependencies. Ivy caches downloaded artifacts locally and every time it is asked to pull something, it first goes to that cache and if nothing found downloads from remote. By default cache is located in ~/.ivy2, but it is actually a configurable property. So just mount volume, point ivy to it (or mount it in a way it will be on default location) and enjoy the caches.

like image 94
om-nom-nom Avatar answered Sep 20 '22 00:09

om-nom-nom


Not sure if this makes sense on an integration server, but when developing on localhost, I'm mapping my host's .ivy2/ and .sbt/ directories to volumes in the container, like so:

docker run ...  -v ~/.ivy2:/root/.ivy2  -v ~/.sbt:/root/.sbt  ...

(Apparently, inside the container, .ivy2/ and .sbt/ are placed in /root/, since we're logging in to the container as the root user.)

like image 27
KajMagnus Avatar answered Sep 18 '22 00:09

KajMagnus