Quickly launch R or RStudio environments using pre-configured Docker containers. This project eliminates the complexity of installing and managing R and its dependencies, providing a consistent and reproducible setup for any machine. Whether you need a simple R console or a full-featured RStudio Server IDE, you can get started with a single command.
The project offers a variety of images to suit different needs:
By containerizing the R environment, you can easily share your work, collaborate with others, and ensure your code runs the same way, every time.
services:
rstudio:
image: rocker/rstudio:latest
container_name: rstudio
environment:
- PASSWORD=${RSTUDIO_PASSWORD}
- ROOT=true
ports:
- "8787:8787"
volumes:
- ./workspace:/home/rstudio
restart: unless-stopped
RSTUDIO_PASSWORD=your_super_secret_password
Auto-fetched about 24 hours ago
Auto-fetched about 24 hours ago