Skip to content

Commit b103d47

Browse files
UniTO HPC4AI migration (#503)
* Added HPC4AI logo * Updated docker-compose.yml file * Removed the Data Controller section
1 parent 2388031 commit b103d47

File tree

5 files changed

+29
-28
lines changed

5 files changed

+29
-28
lines changed

docker-compose.yml

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
version: '3.2'
1+
version: '3.9'
2+
networks:
3+
postgres:
4+
sparql:
25
volumes:
36
bundle:
47
git:
@@ -14,7 +17,7 @@ services:
1417
#build: .
1518
ports:
1619
- "8080:8080"
17-
links:
20+
networks:
1821
- postgres
1922
- sparql
2023
volumes:
@@ -38,6 +41,8 @@ services:
3841
postgres:
3942
restart: always
4043
image: postgres:14-alpine
44+
networks:
45+
- postgres
4146
command: postgres -c listen_addresses='*' -c log_statement=all
4247
environment:
4348
- POSTGRES_USER=sa
@@ -48,7 +53,9 @@ services:
4853
- type: volume
4954
source: postgres
5055
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
5259
sparql:
5360
restart: always
5461
## For debugging, expose the Fuseki port by enabling:
@@ -57,8 +64,17 @@ services:
5764
## To find the admin password, try:
5865
## docker-compose exec sparql grep admin /fuseki/shiro.ini
5966
image: stain/jena-fuseki:3.4.0
67+
networks:
68+
- sparql
6069
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"
3.78 KB
Binary file not shown.

src/main/resources/templates/about.html

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -130,27 +130,6 @@ <h2>Where is information exposed?</h2>
130130
including author names and workflow title.
131131
</p>
132132
</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-
154133
</section>
155134

156135

src/main/resources/templates/fragments/footer.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@
5151
alt="BioExcel" title="BioExcel Center of Excellence for Computational Biomolecular Research" /></a>
5252
<a href="https://cordis.europa.eu/projects/675728" rel="noopener" target="_blank"><img src="/img/Flag_of_Europe.svg"
5353
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>
5456
</div>
5557
</div>
5658
</div>

start-jena.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
3+
mkdir -p /fuseki/databases/cwlviewer
4+
/jena-fuseki/fuseki-server --loc=/fuseki/databases/cwlviewer /cwlviewer

0 commit comments

Comments
 (0)