-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdocker-compose.yml
108 lines (106 loc) · 2.85 KB
/
docker-compose.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
version: '3.8'
services:
openms-streamlit-template:
build:
context: ./openms-streamlit-template
dockerfile: Dockerfile
args:
GITHUB_TOKEN: $GITHUB_TOKEN
image: openms_streamlit_template
container_name: openms-streamlit-template
restart: always
ports:
- 28502:8501 # use different host port (here: 28502) to allow multiple apps running on same server.
volumes:
- workspaces-streamlit-template:/workspaces-streamlit-template
command: streamlit run openms-streamlit-template/app.py
umetaflow:
build:
context: ./umetaflow-gui
dockerfile: Dockerfile
args:
GITHUB_TOKEN: $GITHUB_TOKEN
image: umetaflow_app
container_name: umetaflow-app
restart: always
ports:
- 28503:8501 # increment port numbers (here 28503)
volumes:
- workspaces-umetaflow-gui:/workspaces-umetaflow-gui
command: streamlit run umetaflow-gui/Home.py
nuxl-app:
build:
context: ./nuxl-app
dockerfile: Dockerfile
args:
GITHUB_TOKEN: $GITHUB_TOKEN
image: nuxl_app
container_name: nuxl-app
restart: always
ports:
- 28504:8501 # increment port numbers (here 28504)
volumes:
- workspaces-nuxl-app:/workspaces-nuxl-app
command: streamlit run nuxl-app/run.py
PTMScanner:
build:
context: ./PTMScanner
dockerfile: Dockerfile
args:
GITHUB_TOKEN: $GITHUB_TOKEN
image: ptmscanner_app
container_name: PTMScanner
restart: always
ports:
- 28505:8501
volumes:
- workspaces-PTMScanner:/workspaces-PTMScanner
command: streamlit run PTMScanner/run.py
FLASHViewer:
build:
context: ./FLASHViewer
dockerfile: Dockerfile
args:
GITHUB_TOKEN: $GITHUB_TOKEN
image: flashviewer
container_name: flashviewer
restart: always
ports:
- 28506:8501 # increment port numbers (here 28506)
volumes:
- workspaces-flashviewer:/workspaces-flashviewer
naseweis:
build:
context: ./naseweis
dockerfile: Dockerfile
args:
GITHUB_TOKEN: $GITHUB_TOKEN
image: naseweis
container_name: naseweis
restart: always
ports:
- 28507:8501 # increment port numbers (here 28507)
volumes:
- workspaces-naseweis:/workspaces-naseweis
stream-sage:
build:
context: ./StreamSage
dockerfile: Dockerfile
args:
GITHUB_TOKEN: $GITHUB_TOKEN
image: stream_sage
container_name: stream-sage
restart: always
ports:
- 28508:8501 # increment port numbers (here 28508)
volumes:
- workspaces-stream-sage:/workspaces-stream-sage
command: streamlit run StreamSage/app.py
volumes:
workspaces-streamlit-template:
workspaces-umetaflow-gui:
workspaces-nuxl-app:
workspaces-flashviewer:
workspaces-naseweis:
workspaces-PTMScanner:
workspaces-stream-sage: