-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
92 lines (84 loc) · 1.67 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
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
81
82
83
84
85
86
87
88
89
90
91
92
version: '3'
services:
MyBlog_CategoryDb:
image: mongo:latest
ports:
- "27020:27017"
volumes:
- category_data:/data/db
MyBlog_ReactionDb:
image: mongo:latest
ports:
- "27019:27017"
volumes:
- reaction_data:/data/db
MyBlog_CommentDb:
image: couchbase:community
ports:
- "8091-8094:8091-8094"
- "11210:11210"
- "8095-8097"
- "11207"
- "11280"
volumes:
- comment_data:/var/lib/couchbase/data
MyBlog_ContentDb:
image: mongo:latest
ports:
- "27018:27017"
volumes:
- content_data:/data/db
MyBlog_IdentityDb:
image: mongo:latest
ports:
- "27021:27017"
volumes:
- identity_data:/data/db
MyBlog_Rabbitmq:
image: rabbitmq:3.11.16-management
ports:
- "5672:5672"
- "15672:15672"
networks:
- rabbitmq
restart: always
volumes:
- rabbitmq_data:/var/lib/rabbitmq
MyBlog_Datalust_Seq:
image: datalust/seq:latest
ports:
- "5341:80"
environment:
- ACCEPT_EULA=Y
volumes:
- datalust_seq_data:/data
Myblog_RedisDb:
image: redis:latest
ports:
- "6379:6379"
volumes:
- redis_data:/data
MyBlog_Minio:
image: minio/minio
ports:
- "9000:9000"
- "9001:9001"
volumes:
- minio_data:/data
environment:
MINIO_ROOT_USER: admin
MINIO_ROOT_PASSWORD: Strong#Pass#2023
command: server --console-address ":9001" /data
networks:
rabbitmq:
driver: bridge
volumes:
category_data:
reaction_data:
comment_data:
content_data:
identity_data:
rabbitmq_data:
datalust_seq_data:
minio_data:
redis_data: