-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
80 lines (77 loc) · 1.94 KB
/
docker-compose.yml
File metadata and controls
80 lines (77 loc) · 1.94 KB
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
version: '3'
services:
gateway:
extends:
file: ../gateway/docker-compose.yml
service: gateway
issue:
extends:
file: ../issue-service/docker-compose.yml
service: issue-service
issue-db:
extends:
file: ../issue-service/docker-compose.yml
service: issue-db
project:
extends:
file: ../project-service/docker-compose.yml
service: project-service
project-db:
extends:
file: ../project-service/docker-compose.yml
service: project-db
user:
extends:
file: ../user-service/docker-compose.yml
service: user-service
user-db:
extends:
file: ../user-service/docker-compose.yml
service: user-db
news:
extends:
file: ../news-service/docker-compose.yml
service: news-service
news-mongo:
extends:
file: ../news-service/docker-compose.yml
service: news-mongo
activemq:
image: rmohr/activemq:latest
container_name: activemq
environment:
- "TZ=Europe/Berlin"
- "ACTIVEMQ_OPTS=-Dorg.apache.activemq.SERIALIZABLE_PACKAGES=java.lang,javax.security,java.util,org.apache.activemq,org.fusesource.hawtbuf,com.thoughtworks.xstream.mapper,de.thm.mni.microservices,java.time"
volumes:
- "./activemq/activemq.xml:/conf/activemq.xml"
ports:
- 61616:61616 # broker (admin:adminactivemq)(amq:amq)
- 8161:8161 # web http://boot2docker:8161/admin (admin:admin)
networks:
- network
influx:
image: influxdb:1.8.6
volumes:
- ./../influxDB:/var/lib/influxdb
- ./influx/influx.conf:/etc/influxdb/influx.conf
networks:
- network
grafana:
image: grafana/grafana
ports:
- "3000:3000"
volumes:
- ./grafana/lib:/var/lib/grafana
networks:
- network
networks:
network:
driver: bridge
issue-database:
driver: bridge
project-database:
driver: bridge
user-database:
driver: bridge
news-database:
driver: bridge