-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yaml
112 lines (104 loc) · 2.71 KB
/
compose.yaml
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
services:
postgres-auth:
image: 'postgres:latest'
environment:
- 'POSTGRES_DB=awsome_marketplace.public'
- 'POSTGRES_PASSWORD=Jannyda1'
- 'POSTGRES_USER=redjanvier_admin'
- 'PGDATA=/data/postgres'
volumes:
- ./postgres/auth:/data/postgres
restart: always
postgres-main:
image: 'postgres:latest'
environment:
- 'POSTGRES_DB=awsome_marketplace'
- 'POSTGRES_PASSWORD=Jannyda1'
- 'POSTGRES_USER=redjanvier'
- 'PGDATA=/data/postgres'
volumes:
- ./postgres/main:/data/postgres
ports:
- "5432:5432"
restart: always
zookeeper:
image: confluentinc/cp-zookeeper:7.0.1
container_name: zookeeper
ports:
- "2181:2181"
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
broker:
image: confluentinc/cp-kafka:7.0.1
container_name: broker
ports:
- "9092:9092"
depends_on:
- zookeeper
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181'
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_EXTERNAL:PLAINTEXT,PLAINTEXT_INTERNAL:PLAINTEXT
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://broker:9092,PLAINTEXT_EXTERNAL://localhost:29092
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092,PLAINTEXT_EXTERNAL://0.0.0.0:29092
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1
## Gateway-Service Docker Compose Config
gateway:
build:
context: ./gateway
dockerfile: ./Dockerfile
ports:
- "8080:8080"
depends_on:
- auth-service
- notification-service
- product-service
- order-service
- broker
## Auth-Service Docker Compose Config
auth-service:
build:
context: ./auth
dockerfile: ./Dockerfile
env_file: ./auth/.env
depends_on:
- notification-service
- postgres-auth
- broker
## Notifications-Service Docker Compose Config
notification-service:
build:
context: ./notification
dockerfile: ./Dockerfile
env_file: ./notification/.env
restart: always
depends_on:
- broker
## Products-Service Docker Compose Config
product-service:
build:
context: ./product
dockerfile: ./Dockerfile
ports:
- "8081:8081"
volumes:
- ./product:/app/products
depends_on:
- auth-service
- postgres-main
- broker
## Orders-Service Docker Compose Config
order-service:
build:
context: ./order
dockerfile: ./Dockerfile
ports:
- "8082:8082"
depends_on:
- auth-service
- notification-service
- postgres-main
- broker