1

我有一个闪亮的应用程序在闪亮代理服务器上运行。这是我在application.yml. 它工作正常。

name: user1
password: password
groups: app1

id: webapp1
display-name: application 1
description: web application 1
container-cmd: ["/usr/bin/shiny-server.sh"]
container-image: mydockerimage
container-volumes: ["/data/data1:/srv/shiny-server/data"]
container-network: sp-example-net
port: 80
access-groups: [admins, app1]

现在我需要部署第二个应用程序。这次我仍然使用相同的图像。但是挂载在不同的目录上。/data/data2在主机上。我希望它加载不同的数据集并部署到不同的人群。

下面是我添加application.yml.

但是,我的 shinyproxy 服务器容器无法启动。

有谁知道为什么会这样?我该如何解决?

name: user2
password: password
groups: app2

id: webapp2
display-name: application 2
description: web application 2
container-cmd: ["/usr/bin/shiny-server.sh"]
container-image: mydockerimage
container-volumes: ["/data/data2:/srv/shiny-server/data"]
container-network: sp-example-net
port: 80
access-groups: [admins, app2]
4

0 回答 0