-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
76 lines (69 loc) · 1.67 KB
/
Copy pathdocker-compose.dev.yml
File metadata and controls
76 lines (69 loc) · 1.67 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
services:
postgres:
container_name: memorix-postgres
image: postgres:alpine
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: memorix
ports:
- "5432:5432"
redis:
container_name: memorix-redis
image: redis:alpine
ports:
- "6379:6379"
mongodb:
image: mongo:latest
container_name: memorix-mongo
ports:
- "27017:27017"
environment:
MONGO_INITDB_ROOT_USERNAME: mongo
MONGO_INITDB_ROOT_PASSWORD: mongo
MONGO_INITDB_DATABASE: memorix
rabbitmq:
image: rabbitmq:management-alpine
container_name: memorix-rabbitmq
ports:
- "5672:5672"
- "15672:15672"
environment:
RABBITMQ_DEFAULT_USER: rabbitmq
RABBITMQ_DEFAULT_PASS: rabbitmq
minio:
image: minio/minio:latest
container_name: memorix-minio
ports:
- "9000:9000"
environment:
MINIO_ROOT_USER: minio
MINIO_ROOT_PASSWORD: minio123
command: server /data
mailhog:
image: mailhog/mailhog:latest
container_name: memorix-mailhog
ports:
- "1025:1025"
- "8025:8025"
environment:
MH_STORAGE: "memory"
prometheus:
image: prom/prometheus:latest
container_name: memorix-prometheus
ports:
- "9090:9090"
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
grafana:
image: grafana/grafana:latest
container_name: memorix-grafana
ports:
- "3000:3000"
environment:
GF_SECURITY_ADMIN_USERNAME: admin
GF_SECURITY_ADMIN_PASSWORD: admin
depends_on:
- prometheus
volumes:
- ./grafana/provisioning/datasources:/etc/grafana/provisioning/datasources