-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
55 lines (52 loc) · 1.41 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
version: '3.2'
services:
autoheal:
restart: always
image: willfarrell/autoheal
environment:
- AUTOHEAL_CONTAINER_LABEL=all
volumes:
- /var/run/docker.sock:/var/run/docker.sock
virtuoso:
image: tenforce/virtuoso:virtuoso7.2.5
environment:
- VIRT_SPARQL_MaxQueryCostEstimationTime=default
- VIRT_SPARQL_MaxQueryExecutionTime=300
- VIRT_Parameters_ServerThreads=30
- VIRT_HTTPServer_ServerThreads=300
volumes:
- type: volume
source: virtuoso-db1
target: /data
ports:
- "8890:8890"
restart: always
labels:
- "autoheal=true"
synbiohubFrontend:
image: synbiohub/sbh3frontend:snapshot
ports:
- "3333:3333"
dns: 8.8.8.8
restart: always
environment:
- backend=http://localhost:7777
- backendSS=http://synbiohub:7777
synbiohub:
image: synbiohub/synbiohub:1.6.1-standalone
depends_on:
- virtuoso
ports:
- "7777:7777"
volumes:
- type: volume
source: sbh1
target: /mnt
- type: volume
source: virtuoso-db1
target: /virtuoso
dns: 8.8.8.8
restart: always
volumes:
virtuoso-db1:
sbh1: