Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 901 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 901 Bytes

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