forked from alephdata/aleph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
111 lines (101 loc) · 2.19 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
version: "3.2"
services:
postgres:
image: postgres:10.0
volumes:
- postgres-data:/var/lib/postgresql/data
environment:
POSTGRES_USER: aleph
POSTGRES_PASSWORD: aleph
POSTGRES_DATABASE: aleph
elasticsearch:
image: alephdata/aleph-elasticsearch:${ALEPH_TAG:-3.3.8}
hostname: elasticsearch
environment:
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms1g -Xmx1g"
volumes:
- elasticsearch-data:/usr/share/elasticsearch/data
redis:
image: redis:alpine
command: ["redis-server", "--appendonly", "yes"]
volumes:
- redis-data:/data
convert-document:
image: alephdata/convert-document:189c0e1d212b8f3adeaaae5b3c36b064954c76a5
restart: on-failure
tmpfs:
- /tmp
- /home/app/.config
ingest-file:
image: alephdata/ingest-file:${ALEPH_TAG:-3.3.8}
tmpfs: /tmp
volumes:
- archive-data:/data
links:
- postgres
- redis
- convert-document
restart: on-failure
env_file:
- aleph.env
worker:
image: alephdata/aleph:${ALEPH_TAG:-3.3.8}
command: aleph worker
restart: on-failure
links:
- postgres
- elasticsearch
- redis
- ingest-file
tmpfs:
- /tmp
volumes:
- archive-data:/data
env_file:
- aleph.env
shell:
image: alephdata/aleph:${ALEPH_TAG:-3.3.8}
command: /bin/bash
links:
- postgres
- elasticsearch
- redis
- ingest-file
- worker
tmpfs:
- /tmp
volumes:
- archive-data:/data
- "./mappings:/aleph/mappings"
- "/:/host"
env_file:
- aleph.env
api:
image: alephdata/aleph:${ALEPH_TAG:-3.3.8}
command: gunicorn -w 6 -b 0.0.0.0:8000 --log-level debug --log-file - aleph.wsgi:app
expose:
- 8000
links:
- postgres
- elasticsearch
- redis
- worker
- ingest-file
tmpfs:
- /tmp
volumes:
- archive-data:/data
env_file:
- aleph.env
ui:
image: alephdata/aleph-ui-production:${ALEPH_TAG:-3.3.8}
links:
- api
ports:
- "8080:8080"
volumes:
archive-data: {}
postgres-data: {}
redis-data: {}
elasticsearch-data: {}