-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (44 loc) · 1006 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
49 lines (44 loc) · 1006 Bytes
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
version: "2"
services:
radiologyservice:
build: radiologyservice
volumes:
- ./radiologyservice:/code
ports:
- "9999:9999"
restgateway:
build: restgateway
environment:
- MODE=dev
- ELASTICSEARCH_HOST=127.0.0.1
- ELASTICSEARCH_PORT=9200
volumes:
- ./restgateway:/code
depends_on:
- elasticsearch
- rabbitmq
ports:
- "9091:9090"
rabbitmq:
image: rabbitmq:3.6.1-management
environment:
- RABBITMQ_DEFAULT_USER=admin
- RABBITMQ_DEFAULT_PASS=admin
ports:
- "8023:15672"
- "8024:5672"
authentificationservice:
build: authentificationservice
ports:
- "3000:3000"
elasticsearch:
image: elasticsearch:5-alpine
# restart: unless-stopped
command: elasticsearch -Etransport.host=127.0.0.1
environment:
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ports:
- "9200:9200"
- "9300:9300"
volumes:
- ../data:/usr/share/elasticsearch/data