The bemovi_master image ia on the docker hub at https://hub.docker.com/r/rkrug/bemovi_master and you can simply pull it by using
docker pull rkrug/bemovi_master
cd master/3.6.0/
docker build -t bemovi_master .
or for the bemovi develop branch:
cd develop/3.6.0/
docker build -t bemovi_develop .
docker run -i -e PASSWORD=pwd --rm -p 8787:8787 -v /DIRETORY/TO/SHARE/:/home/rstudio/Documents bemovi_master
docker run -i -e PASSWORD=pwd --rm -p 8787:8787 -v /DIRETORY/TO/SHARE/:/home/rstudio/Documents bemovi_develop
From your browser, goto
http://localhost:8787/
This should open Rstudio. If it asks for a password, use
- username =
rstudio
- password =
pwd
There are issues with running ImageJ headless - I don't have a solution at the moment.
Likely solution: use ImageJ --headless -macro ...
instead of java -jar ij.jar -macro ...
, but this needs to be tested before.