This is a Docker Image for deploy RStudio with some usefull packages installed.
https://hub.docker.com/r/hersonpc/r-verse
To download the image from Docker Hub:
docker pull hersonpc/r-verse:latest
To build manually a local docker image, without downloading it from Docker Hub, you can use:
docker build -t hersonpc/r-verse:latest .
To excecute the docker container by shell command:
docker run -d -p 8787:8787 -e PASSWORD=secret hersonpc/r-verse:latest
You can make it avaliable via docker-compose.yml file, than you can call the shell command:
docker-compose up -d
version: "3"
services:
rstudio:
image: hersonpc/r-verse:latest
container_name: rstudio
restart: always
volumes:
- ./src:/r
ports:
- "8787:8787"
environment:
- PASSWORD=secret
- ROOT=TRUE
Then to access the RStudio Server, you can visit http://localhost:8787
User: rstudio
Pass: secret
Content type
Image
Digest
Size
1.2 GB
Last updated
over 5 years ago
docker pull hersonpc/r-verse