Deploy Shiny app with Flexdashboard

后端 未结 3 1433
小蘑菇
小蘑菇 2021-01-25 00:54

I know how to deploy a shiny app using http://www.shinyproxy.io/. Basically I just need server.R and ui.R. Then using docker it\'s a pretty easy job.

However, when using

3条回答
  •  情书的邮戳
    2021-01-25 01:23

    This is actually supported out of the box by ShinyProxy. You just need to add yourfile.Rmd file in the docker image (i.e. add the relevant commands in your Dockerfile), and then use the

    docker-cmd: ["R", "-e rmarkdown::run('/path/to/yourFile.Rmd')"]

    in the relevant field of the apps block. Full details on app configuration here

提交回复
热议问题