-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
130 lines (117 loc) · 2.45 KB
/
Copy pathdocker-compose.yml
File metadata and controls
130 lines (117 loc) · 2.45 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
version: '3.8'
services:
consul:
image: consul:1.15
ports:
- "8500:8500"
command: ["agent", "-dev", "-client=0.0.0.0"]
auth:
build:
context: .
dockerfile: dockerfiles/Dockerfile.auth
ports:
- "50051:50051"
depends_on:
- consul
catalog:
build:
context: .
dockerfile: dockerfiles/Dockerfile.catalog
ports:
- "50052:50052"
depends_on:
- consul
order:
build:
context: .
dockerfile: dockerfiles/Dockerfile.order
ports:
- "50053:50053"
depends_on:
- consul
- auth
- catalog
- notification
- kafka
payment:
build:
context: .
dockerfile: dockerfiles/Dockerfile.payment
ports:
- "50054:50054"
depends_on:
- consul
- order
- rabbitmq
gateway:
build:
context: .
dockerfile: dockerfiles/Dockerfile.gateway
ports:
- "8080:8080"
depends_on:
- auth
- catalog
- order
- notification
nginx:
image: nginx:alpine
ports:
- "80:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
depends_on:
- gateway
- graphql-gateway
graphql-gateway:
build:
context: .
dockerfile: dockerfiles/Dockerfile.graphql_gateway
ports:
- "8000:8000"
depends_on:
- gateway
rabbitmq:
image: rabbitmq:3-management
ports:
- "5672:5672" # AMQP порт
- "15672:15672" # Web UI порт
environment:
- RABBITMQ_DEFAULT_USER=guest
- RABBITMQ_DEFAULT_PASS=guest
depends_on:
- order
notification:
build:
context: .
dockerfile: dockerfiles/Dockerfile.notification
ports:
- "50055:50055"
depends_on:
- consul
zookeeper:
image: confluentinc/cp-zookeeper:7.4.0
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
ports:
- "2181:2181"
kafka:
image: confluentinc/cp-kafka:7.4.0
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
ports:
- "9092:9092"
depends_on:
- zookeeper
analytics:
build:
context: .
dockerfile: dockerfiles/Dockerfile.analytics
depends_on:
- kafka