File tree Expand file tree Collapse file tree 5 files changed +29
-28
lines changed Expand file tree Collapse file tree 5 files changed +29
-28
lines changed Original file line number Diff line number Diff line change 1
- version : ' 3.2'
1
+ version : ' 3.9'
2
+ networks :
3
+ postgres :
4
+ sparql :
2
5
volumes :
3
6
bundle :
4
7
git :
@@ -14,7 +17,7 @@ services:
14
17
# build: .
15
18
ports :
16
19
- " 8080:8080"
17
- links :
20
+ networks :
18
21
- postgres
19
22
- sparql
20
23
volumes :
@@ -38,6 +41,8 @@ services:
38
41
postgres :
39
42
restart : always
40
43
image : postgres:14-alpine
44
+ networks :
45
+ - postgres
41
46
command : postgres -c listen_addresses='*' -c log_statement=all
42
47
environment :
43
48
- POSTGRES_USER=sa
@@ -48,7 +53,9 @@ services:
48
53
- type : volume
49
54
source : postgres
50
55
target : /var/lib/postgresql/data
51
- - ./pg_hba.conf/:/var/lib/postgresql/data/pg_hba.conf
56
+ - type : bind
57
+ source : ./pg_hba.conf
58
+ target : /var/lib/postgresql/data/pg_hba.conf
52
59
sparql :
53
60
restart : always
54
61
# # For debugging, expose the Fuseki port by enabling:
@@ -57,8 +64,17 @@ services:
57
64
# # To find the admin password, try:
58
65
# # docker-compose exec sparql grep admin /fuseki/shiro.ini
59
66
image : stain/jena-fuseki:3.4.0
67
+ networks :
68
+ - sparql
60
69
volumes :
61
- - type : volume
62
- source : sparql
63
- target : /fuseki/databases/cwlviewer
64
- command : " /jena-fuseki/fuseki-server --loc=/fuseki/databases/cwlviewer /cwlviewer"
70
+ - type : volume
71
+ source : sparql
72
+ target : /fuseki
73
+ - type : bind
74
+ source : ./start-jena.sh
75
+ target : /start-jena.sh
76
+ ulimits :
77
+ nofile :
78
+ soft : 65536
79
+ hard : 65536
80
+ command : " /start-jena.sh"
Original file line number Diff line number Diff line change @@ -130,27 +130,6 @@ <h2>Where is information exposed?</h2>
130
130
including author names and workflow title.
131
131
</ p >
132
132
</ section >
133
-
134
- < section id ="data-controller ">
135
- < h2 > Data controller</ h2 >
136
- < p >
137
- The < em > Data Controller</ em > for the
138
- < a href ="https://view.commonwl.org/ "> https://view.commonwl.org/</ a > instance of CWL Viewer
139
- is Curii Corporation, Inc., contact
140
- < a href ="javascript:window.location.href=atob('bWFpbHRvOmluZm9AY3VyaWkuY29t') ">
141
- < code > < span class ="obf-hide " aria-hidden ="true "> NOT</ span > info< span class ="obf-at "> </ span > < span class ="obf-hide " aria-hidden ="true "> ()</ span > < span class ="obf-hide " aria-hidden ="true "> NONE</ span > curii.com</ code > </ a > for any enquiries.
142
- If this viewer is accessed at a different URL, the data controller is likely someone else.
143
- </ p >
144
- < p >
145
- < span class ="obf-hide " aria-hidden ="true "> (manual de-obfuscation needed above)</ span >
146
- You may contact the Data Controller to request access to data about yourself,
147
- or to request update or removal of your personally identifiable information.
148
- You may also want to follow the < em > Shown Workflow</ em > link at the bottom
149
- of any workflow page to locate the corresponding git repository from
150
- the original publisher.
151
- </ p >
152
- </ section >
153
-
154
133
</ section >
155
134
156
135
Original file line number Diff line number Diff line change 51
51
alt ="BioExcel " title ="BioExcel Center of Excellence for Computational Biomolecular Research " /> </ a >
52
52
< a href ="https://cordis.europa.eu/projects/675728 " rel ="noopener " target ="_blank "> < img src ="/img/Flag_of_Europe.svg "
53
53
alt ="EU " title ="European Commision grant 675728 " /> </ a >
54
+ < a href ="https://hpc4ai.unito.it/ " rel ="noopener " target ="_blank "> < img src ="/img/hpc4ai-logo.webp "
55
+ alt ="HPC4AI " title ="HPC4AI competence centre, University of Turin " /> </ a >
54
56
</ div >
55
57
</ div >
56
58
</ div >
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+ mkdir -p /fuseki/databases/cwlviewer
4
+ /jena-fuseki/fuseki-server --loc=/fuseki/databases/cwlviewer /cwlviewer
You can’t perform that action at this time.
0 commit comments