Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 847 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 847 Bytes

coesra-singularity-rstudio

The main idea of this repository is to build the RStudio application in a docker container and then convert it into Singularity. The following commands and rools are require to be able to build the docker image and then build the singularity image.

Require Tools

Build docker image

docker build . -t rstudio:2022.02.2-485

Docker2Singularity

The following command will generate a file.simg, and it is what you need to run with singularity.

docker run \
    -v /var/run/docker.sock:/var/run/docker.sock \
    -v $HOME/<OUTPUT_PATH>:/output \
    --privileged -t --rm \
    singularityware/docker2singularity \
    --name <OUTPUT_NAME> rstudio:2022.02.2-485