vnijs/r-bionic
Dockerized Shiny-server and Rstudio-server on Ubuntu 18.04 (Bionic)
2.7K
This repo contains the configuration to setup Rstudio-server and Shiny-server in a Docker container
After installing Docker check that it is running by typing docker --version
in a terminal which should return something like the below:
docker --version
Docker version 18.09.0, build 4d60db4
To build a new container based on r-bionic
add the following at the top of your Dockerfile
FROM vnijs:r-bionic
Use the terminal to change the working directory to the location where you cloned the repo and change the working directory to r-bionic
. Then build the docker image using:
docker build -t $USER/r-bionic .
Check the disk space used by docker images
docker ps -s
docker system df
On mac you can use the commands below to push your custom image to docker hub:
sudo docker login
docker push $USER/r-bionic
Shiny and Shiny Server are registered trademarks of RStudio, Inc. The use of the trademarked terms Shiny and Shiny Server and the distribution of the Shiny Server through the images hosted on hub.docker.com has been granted by explicit permission of RStudio. Please review RStudio's trademark use policy and address inquiries about further distribution or other questions to permissions@rstudio.com.
docker pull vnijs/r-bionic