-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
98 lines (88 loc) · 1.71 KB
/
docker-compose.yml
File metadata and controls
98 lines (88 loc) · 1.71 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
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:
- postgresql
- 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
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
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
postgresql:
build:
context: .
dockerfile: dockerfiles/Dockerfile.postgresql
ports:
- "5431:5432"