Skip to content

Latest commit

 

History

History

rstudio

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

rstudio

Enabling root-login in rocker:hadleyverse

Supported tags and respective Dockerfile links

Usage

docker run -d                   `# run container in background` \
    -p 8787:8787                `# share default port for rserver` \
    -v $HOME/.rstudio:/.rstudio `# share user-rstudio directory` \
    -v $(pwd):/root             `# share current directory as working directory` \
    harmish/rstudio:dev         `# run rstudio-server`
  • This image enables login as root:root with rstudio. It is helpful if you are using user namespace mapping with docker daemon, and mapping host user to root inside the container.

Linked repositories