Skip to content

DelphieSoftware/shiny

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RStudio Shiny Server "ShinyR" on centos7 and openshift

Warning: This image was made for use with OpenShift, it may not work outside that platform without modifications.

docker build -t shiny:latest .
# openshift uses a random user id for addtional security which we simulate here
docker run -u 12345 -p 3838:3838 -it shiny:latest

To push to docker hub:

# the user name and deploy tag to be yours in the following
docker tag shiny:latest username:deploytag
docker login
docker push username:deploytag

To deploy to openshift edit the openshift.json and edit the following line to be your docker hub repo:

"dockerImageRepository": "delphie/shiny`

and edit the tag 20191116_0712 in the following line to be that tag you pushed:

 "name": "shiny-centos7:20191116_0712"

About

fixes security warning on rocker/shiny

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Dockerfile 81.4%
  • Shell 18.6%