-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
59 lines (52 loc) · 1.49 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
version: "3"
services:
askomics:
image: askomics/flaskomics:latest
env_file:
- askomics.env
volumes:
- ./output/askomics:/tmp/askomics
celery_askomics:
image: askomics/celery-flaskomics:latest
env_file:
- askomics.env
volumes:
- ./output/askomics:/tmp/askomics
celerybeat_askomics:
image: askomics/celery-flaskomics:latest
env_file:
- askomics.env
volumes:
- ./output/askomics:/tmp/askomics
command: make serve-celery-beat
virtuoso:
image: askomics/virtuoso:7.2.5.1
env_file:
- virtuoso.env
volumes:
- ./output/virtuoso:/data
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: rlHesft1Q
corese:
image: xgaia/corese:20.6.11
environment:
MEM: 1G
redis:
image: redis:4.0
nginx:
image: nginx:1.17
volumes:
- ./nginx.conf:/tmp/nginx.conf
- ./output/nginx/log:/var/log/nginx
ports:
- "80:80"
env_file:
- nginx.env
command: /bin/bash -c "envsubst < /tmp/nginx.conf > /etc/nginx/conf.d/default.conf && nginx -g 'daemon off;'"