Docker Shinyproxy错误500:启动容器失败/原因:java.io.IOException:权限被拒绝

Docker Shinyproxy错误500:启动容器失败/原因:java.io.IOException:权限被拒绝,docker,docker-compose,permission-denied,shinyproxy,Docker,Docker Compose,Permission Denied,Shinyproxy,将显示shinyproxy页面,经过身份验证后,我可以看到导航栏,2个指向2个应用程序的链接。然后,当我点击其中一个时,我得到了en错误500/“启动容器失败” 在堆栈中,我可以看到: Caused by: java.io.IOException: Permission denied 这是我的配置 application.yml: proxy: title: Open Analytics Shiny Proxy # landing-page: / port: 8080 authe

将显示shinyproxy页面,经过身份验证后,我可以看到导航栏,2个指向2个应用程序的链接。然后,当我点击其中一个时,我得到了en错误500/“启动容器失败” 在堆栈中,我可以看到:

Caused by: java.io.IOException: Permission denied
这是我的配置

application.yml:

proxy:
  title: Open Analytics Shiny Proxy
 # landing-page: /
  port: 8080
  authentication: simple
  admin-groups: scientists
  # Example: 'simple' authentication configuration
  users:
  - name: jack
    password: password
    groups: scientists
  - name: jeff
    password: password
    groups: mathematicians
  # Example: 'ldap' authentication configuration
  # Docker configuration
  #docker:
    #cert-path: /home/none
    #url: http://localhost:2375
    #port-range-start: 20000
  specs:strong text
  - id: 01_hello
    display-name: Hello Application
    description: Application which demonstrates the basics of a Shiny app
    container-cmd: ["R", "-e", "shinyproxy::run_01_hello()"]
    container-image: openanalytics/shinyproxy-demo
    access-groups: [scientists, mathematicians]
  - id: 06_tabsets
    container-cmd: ["R", "-e", "shinyproxy::run_06_tabsets()"]
    container-image: openanalytics/shinyproxy-demo
    access-groups: scientists

logging:
  file:
    shinyproxy.log
version: '2.4'
services:
    shinyproxy:
        container_name: shinyproxy
        image: openanalytics/shinyproxy:2.3.1
        restart: always
        volumes:
            - /var/run/docker.sock:/var/run/docker.sock
            - ./application.yml:/opt/shinyproxy/application.yml
        privileged: true
        ports:
            - 35624:8080
shinyproxy docker compose.yml:

proxy:
  title: Open Analytics Shiny Proxy
 # landing-page: /
  port: 8080
  authentication: simple
  admin-groups: scientists
  # Example: 'simple' authentication configuration
  users:
  - name: jack
    password: password
    groups: scientists
  - name: jeff
    password: password
    groups: mathematicians
  # Example: 'ldap' authentication configuration
  # Docker configuration
  #docker:
    #cert-path: /home/none
    #url: http://localhost:2375
    #port-range-start: 20000
  specs:strong text
  - id: 01_hello
    display-name: Hello Application
    description: Application which demonstrates the basics of a Shiny app
    container-cmd: ["R", "-e", "shinyproxy::run_01_hello()"]
    container-image: openanalytics/shinyproxy-demo
    access-groups: [scientists, mathematicians]
  - id: 06_tabsets
    container-cmd: ["R", "-e", "shinyproxy::run_06_tabsets()"]
    container-image: openanalytics/shinyproxy-demo
    access-groups: scientists

logging:
  file:
    shinyproxy.log
version: '2.4'
services:
    shinyproxy:
        container_name: shinyproxy
        image: openanalytics/shinyproxy:2.3.1
        restart: always
        volumes:
            - /var/run/docker.sock:/var/run/docker.sock
            - ./application.yml:/opt/shinyproxy/application.yml
        privileged: true
        ports:
            - 35624:8080