Container unresponsive, trying again (12/2010): http://localhost:20000

Hi,
I am sorry for this issue which not seems to be rare. I have got a Container unresponsive, trying again (12/2010): http://localhost:20000 error, despite :

  • docker run -p 3838:3838 -v /home/ionadmin/OmicsVerse/databases:/home/databases -v /home/ionadmin/OmicsVerse/shinyproxy/Docker/:/home/Downloads -it somavardbbase successfully launch the app
  • 3838 is exposed at the end of the dockerfile
  • container-cmd: [“R”, “-e”, “SomaVarDB::run_app(…, options = list(port = 3838, host = ‘0.0.0.0’))”]
  • bind-address : 0.0.0.0
  • container-wait-time : 4000000
  • container-volumes: [ “/home/ionadmin/OmicsVerse/databases:/home/databases”, “/home/ionadmin/OmicsVerse/shinyproxy/Docker/:/home/Downloads” ] (I checked that these volumes are correclty mounted on image)

Best regards,
C. BENOIT

PS : container-cmd: [“R”, “-e”, “shinyproxy::run_06_tabsets()”] works with this yaml file

PSPS: run_app function has been built with golem :

run_app <- function(
  onStart = NULL,
  options = list(launch.browser = TRUE, host  = "0.0.0.0"),
  enableBookmarking = NULL,
  uiPattern = "/",
  prefix = NULL,
  db_path = NULL,
  ...
) {
  prefix <<- prefix
  db_path <<- db_path
  with_golem_options(
app = shinyApp(
  ui = app_ui,
  server = app_server,
  onStart = purrr::partial(eval, expr = global, envir = globalenv()),
  options = options,
  enableBookmarking = enableBookmarking,
  uiPattern = uiPattern
),
golem_opts = list(...)
  )
}

Hello,

It works when using google-chrome as a web browser… By default my users are on Microsoft Edge…

I wonder if the issue happened because google-chrome is the browser I installed in my Docker image. Or if there are shinyproxy incompatibilities with Edge ? which I would inderstand :sweat_smile:

Best regards,
Clément