dockerfiler icon indicating copy to clipboard operation
dockerfiler copied to clipboard

set options('shiny.port'=xx,shiny.host='0.0.0.0') inside Rprofile for add_dockerfile_shinyproxy

Open ColinFay opened this issue 4 years ago • 0 comments

set options('shiny.port'=3838,shiny.host='0.0.0.0') inside Rprofile.site to simplify application.yml.

to avoid :

  • id: demo container-cmd: ["R", "-e", "options('shiny.port'=3838,shiny.host='0.0.0.0');shinyapp::run_app()"] container-image: shinyapp

to allow :

  • id: demo container-cmd: ["R", "-e", "shinyapp::run_app()"] container-image: shinyapp

Migrated from https://github.com/ThinkR-open/golem/issues/492

ColinFay avatar Sep 23 '21 19:09 ColinFay