forked from alephdata/aleph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
127 lines (117 loc) · 3.08 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
version: "2"
services:
postgres:
image: postgres:10.0
volumes:
- "./build/data/postgres:/var/lib/postgresql/data"
environment:
POSTGRES_USER: aleph
POSTGRES_PASSWORD: aleph
POSTGRES_DATABASE: aleph
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.1.2
volumes:
- elasticsearch-data:/usr/share/elasticsearch/data
- elasticsearch-log:/var/log
rabbitmq:
image: rabbitmq
volumes:
- "./build/data/rabbitmq:/var/lib/rabbitmq"
unoservice:
image: alephdata/unoservice
tmpfs:
- /tmp
- /root/.config
restart: on-failure
expose:
- 3000
worker:
build: .
command: celery -A aleph.queues -B -c 4 -l INFO worker
links:
- postgres
- elasticsearch
- rabbitmq
- unoservice
tmpfs: /tmp
volumes:
- "./build/archive:/archive"
- "./build/incoming:/incoming"
- polyglot:/polyglot
environment:
C_FORCE_ROOT: 'true'
ALEPH_ELASTICSEARCH_URI: http://elasticsearch:9200/
ALEPH_DATABASE_URI: postgresql://aleph:aleph@postgres/aleph
ALEPH_BROKER_URI: amqp://guest:guest@rabbitmq:5672
ALEPH_ARCHIVE_PATH: /archive
POLYGLOT_DATA_PATH: /polyglot
UNOSERVICE_URL: http://unoservice:3000/convert
env_file:
- aleph.env
beat:
build: .
command: celery -A aleph.queues beat -s /var/lib/celerybeat-schedule.db
links:
- postgres
- elasticsearch
- rabbitmq
- worker
tmpfs: /tmp
volumes:
- "./build/data/beat:/var/lib/"
- "./build/archive:/archive"
- polyglot:/polyglot
environment:
C_FORCE_ROOT: 'true'
ALEPH_ELASTICSEARCH_URI: http://elasticsearch:9200/
ALEPH_DATABASE_URI: postgresql://aleph:aleph@postgres/aleph
ALEPH_BROKER_URI: amqp://guest:guest@rabbitmq:5672
ALEPH_ARCHIVE_PATH: /archive
POLYGLOT_DATA_PATH: /polyglot
UNOSERVICE_URL: http://unoservice:3000/convert
env_file:
- aleph.env
api:
build: .
command: gunicorn -w 8 -b 0.0.0.0:8000 --log-level info --log-file /var/log/gunicorn.log aleph.manage:app
expose:
- 8000
links:
- postgres
- elasticsearch
- rabbitmq
- worker
volumes:
- "./build/archive:/archive"
- polyglot:/polyglot
environment:
ALEPH_ELASTICSEARCH_URI: http://elasticsearch:9200/
ALEPH_DATABASE_URI: postgresql://aleph:aleph@postgres/aleph
ALEPH_BROKER_URI: amqp://guest:guest@rabbitmq:5672
ALEPH_ARCHIVE_PATH: /archive
POLYGLOT_DATA_PATH: /polyglot
UNOSERVICE_URL: http://unoservice:3000/convert
env_file:
- aleph.env
ui:
build: ui
command: /bin/bash -c "npm run build; tail -f /dev/null"
volumes:
- assets:/alephui/build
environment:
REACT_APP_API_ENDPOINT: '/api/2'
web:
image: nginx:alpine
links:
- api
- ui
ports:
- "8080:8080"
volumes:
- assets:/assets
- "./contrib/proxy.conf:/etc/nginx/nginx.conf"
volumes:
assets: {}
polyglot: {}
elasticsearch-data: {}
elasticsearch-log: {}