-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.yml
40 lines (35 loc) · 1.58 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
version: '2'
services:
publicationstats-restfulapi:
image: scieloorg/publication_stats:release-1.13.10
environment:
- ELASTICSEARCH=es.scielo.org:9200
command: gunicorn --paste production.ini -w 4 -b 0.0.0.0
publicationstats-thriftserver:
image: scieloorg/publication_stats:release-1.13.10
environment:
- ELASTICSEARCH=es.scielo.org:9200
- ARTICLEMETA_THRIFTSERVER=articlemeta.scielo.org:11620
- LOGGING_LEVEL=DEBUG
- SENTRY_HANDLER=https://9de0b79913614860856f7a938c336c94:[email protected]/8
command: publicationstats_thriftserver --port 11620 --host 0.0.0.0
publicationstats-loaddata-journals:
image: scieloorg/publication_stats:release-1.13.10
environment:
- ELASTICSEARCH=es.scielo.org:9200
- ARTICLEMETA_THRIFTSERVER=articlemeta.scielo.org:11620
- LOGGING_LEVEL=DEBUG
- SENTRY_HANDLER=https://4f398e43cf85413d9ae3d25f269c7a8a:[email protected]/6
command: publicationstats_loaddata -i -d journal
labels:
io.rancher.container.start_once: 'true'
publicationstats-loaddata-documents:
image: scieloorg/publication_stats:release-1.13.10
environment:
- ELASTICSEARCH=es.scielo.org:9200
- ARTICLEMETA_THRIFTSERVER=articlemeta.scielo.org:11620
- LOGGING_LEVEL=DEBUG
- SENTRY_HANDLER=https://4f398e43cf85413d9ae3d25f269c7a8a:[email protected]/6
command: publicationstats_loaddata -i -d articles
labels:
io.rancher.container.start_once: 'true'