openanalytics / shinyproxy-rstudio-ide-demo

Running RStudio inside ShinyProxy
https://www.shinyproxy.io
16 stars 10 forks source link

authentication: none #5

Closed djhurio closed 1 year ago

djhurio commented 1 year ago

Is it possible to run the RStudio without ShinyProxy authentication (authentication: none)? The RStudio session does not start for me.

image

It was working with authentication: simple.

I have the following configuration.

proxy:
  ...
  authentication: none
  ...
  specs:
  - id: rstudio
    display-name: RStudio
    description: RStudio Server in Docker container
    container-image: openanalytics/shinyproxy-rstudio-ide-demo:2021.09.2_382__4.1.2
    container-env:
      DISABLE_AUTH: true
      USER: "#{proxy.userId}"
      WWW_ROOT_PATH: "#{proxy.getRuntimeValue('SHINYPROXY_PUBLIC_PATH')}"
    port: 8787
    container-volumes: [ "/tmp/shinyproxy/#{proxy.userId}:/home/#{proxy.userId}" ]
djhurio commented 1 year ago

I took the latest rocker/rstudio as a base image and it is solved now. Thanks!