fitzRoy now provides Docker support in the form of an image hosted on DockerHub.
Once you have the images, (e.g. docker pull jimmyday12/fitzroy:latest
) run one of the following commands.
docker run -d -p 8787:8787 --name fitzroy jimmyday12/fitzroy:latest
and open http://localhost:8787
. *(Username: rstudio
, Password: rstudio
)docker run -it jimmyday12/fitzroy:latest R
to start with an R terminal prompt.quit()
to exit the containerTo build the Docker image run the following from the root of the repository.
docker build -t jimmyday12/fitzroy:latest -f docker/rstudio/Dockerfile .