-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-local.yml
More file actions
66 lines (60 loc) · 1.36 KB
/
docker-compose-local.yml
File metadata and controls
66 lines (60 loc) · 1.36 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
version: '3'
services:
postgresql-database:
image: postgres:12.2
ports:
- "5432:5432"
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=easypassword
mongodb-database:
image: mongo:4.2.5
ports:
- "27017:27017"
environment:
- MONGO_INITDB_ROOT_USERNAME=mongoadmin
- MONGO_INITDB_ROOT_PASSWORD=easypassword
- MONGO_INITDB_DATABASE=mymongodb
grafana-dashboard:
build: grafana
image: grafana
environment:
- GF_SERVER_CERT_FILE=/etc/grafana/certs/server.crt
- GF_SERVER_CERT_KEY=/etc/grafana/certs/server.key
- GF_SERVER_PROTOCOL=https
- GF_USERS_ALLOW_SIGN_UP=false
- GF_SECURITY_ADMIN_USER=chat
- GF_SECURITY_ADMIN_PASSWORD=chat
ports:
- "3000:3000"
links:
- prometheus-metrics
prometheus-metrics:
build: prometheus
image: prometheus
ports:
- "9090:9090"
links:
- backend-api
rabbitmq-broker:
build: rabbitmq
image: rabbitmq
ports:
- "5672:5672"
- "15672:15672"
- "15692:15692"
encryption:
build: ../ChatEncryptionAPI
image: encryption
ports:
- "7799:7799"
backend-api:
build: ../ChatBackendAPI
image: backend-api
ports:
- "8080:8080"
links:
- rabbitmq-broker
- encryption
- postgresql-database
- mongodb-database