dockerfiler
dockerfiler copied to clipboard
set options('shiny.port'=xx,shiny.host='0.0.0.0') inside Rprofile for add_dockerfile_shinyproxy
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