-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
62 lines (58 loc) · 1.66 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
version: "3"
services:
virtuoso:
image: askomics/virtuoso:7.2.5.1
env_file:
- virtuoso.env
command:
- /bin/sh
- -c
- netstat -nr | grep '^0\.0\.0\.0' | awk '{print $$2 " askomics-host"}' >> /etc/hosts && sh /virtuoso/virtuoso.sh
ports:
- "8891:8890"
isqlapi:
image: xgaia/isql-api:2.1.1
environment:
WORKER_NUMBER: 20
ISQL_API_VIRTUOSO_DSN: virtuoso
VIRTUOSO_HOST: virtuoso
VIRTUOSO_ISQL_PORT: 1111
ISQL_API_VIRTUOSO_USERNAME: dba
ISQL_API_VIRTUOSO_PASSWORD: dba
ports:
- "5051:5050"
redis:
image: redis:4.0
ports:
- "6380:6379"
galaxy:
image: bgruening/galaxy-stable:20.05
environment:
GALAXY_CONFIG_BRAND: Galaxy - AskOmics CI
ports:
- "8081:80"
corese:
image: xgaia/corese:20.6.11
environment:
MEM: 1G
command:
- /bin/sh
- -c
- netstat -nr | grep '^0\.0\.0\.0' | awk '{print $$2 " askomics-host"}' >> /etc/hosts && /corese/start.sh
ports:
- "8082:8080"
ldap:
image: xgaia/simple-ldap
environment:
ORGANISATION_NAME: AskOmics
SUFFIX: dc=askomics,dc=org
ROOT_USER: admin
ROOT_PW_CLEAR: admin
FIRST_USER: 'true'
USER_UID: jwick
USER_GIVEN_NAME: John
USER_SURNAME: Wick
USER_EMAIL: [email protected]
USER_PW_CLEAR: jwick
ports:
- 8389:389