-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.yml
36 lines (31 loc) · 1.07 KB
/
application.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Set the subpath of the shinyproxy URL
server:
contextPath: /shiny
servlet:
context-path: /shiny
secure-cookies: true
frame-options: sameorigin
proxy:
title: Data Science Application Server
logo-url: file:///${WORKDIR}/favicon.png
port: 8080
authentication: none
docker:
internal-networking: true
specs:
# Configuration for RPIE app
- id: rpie
display-name: RPIE Code Retrieval
description: Fetch the RPIE code for a given PIN
container-cmd: ["R", "-e", "shiny::runApp('/app/app.R')"]
container-image: ${CCAO_REGISTRY_URL}/app-shiny-rpie:latest
container-network: service-shiny-proxy-net
container-env-file: /run/secrets/ENV_FILE
# RPIE dashboard config
- id: rpie_dashboard
display-name: RPIE Dashboard
description: Get aggregate information about RPIE filings
container-cmd: ["R", "--no-environ", "-e", "rmarkdown::run('dashboard.Rmd')"]
container-image: ${CCAO_REGISTRY_URL}/app-shiny-rpie-dashboard:latest
container-network: service-shiny-proxy-net
container-env-file: /run/secrets/ENV_FILE