openkbs/scala-ide-docker
ScalaIDE Docker over Oracle Java 8, Maven 3.5.0, Python 3.6.2 with X11 socket to display IDE
228
./build.sh
./run.sh
Scala plugins are kept on $HOME/.scala-ide-docker
inside the container, so if you
want to keep them around after you close it, you'll need to share it with your
host.
For example:
docker run -ti --rm \
-e DISPLAY=$DISPLAY \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-v `pwd`/.scala-ide-docker:/home/developer/.scala-ide-docker \
-v `pwd`:/home/developer/workspace \
openkbs/scala-ide-docker
You might have an issue with the X11 socket permissions since the default user
used by the base image has an user and group ids set to 1000
, two options:
`xhost +`
Then, try again.
docker pull openkbs/scala-ide-docker