-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
152 lines (141 loc) · 3.53 KB
/
docker-compose.yml
File metadata and controls
152 lines (141 loc) · 3.53 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
---
version: '3.7'
services:
## MySQL Docker Compose Config
postgres-order:
container_name: postgres-order
image: postgres
environment:
POSTGRES_DB: order-service
POSTGRES_USER: ptechie
POSTGRES_PASSWORD: password
PGDATA: /data/postgres
volumes:
- ./postgres-order:/data/postgres
expose:
- "5431"
ports:
- "5431:5431"
command: -p 5431
restart: always
postgres-inventory:
container_name: postgres-inventory
image: postgres
environment:
POSTGRES_DB: inventory-service
POSTGRES_USER: ptechie
POSTGRES_PASSWORD: password
PGDATA: /data/postgres
volumes:
- ./postgres-inventory:/data/postgres
ports:
- "5432:5432"
restart: always
## Mongo Docker Compose Config
mongo:
container_name: mongo
image: mongo:4.4.14-rc0-focal
restart: always
ports:
- "27017:27017"
expose:
- "27017"
volumes:
- ./mongo-data:/data/db
## Keycloak Config with Mysql database
keycloak-mysql:
container_name: keycloak-mysql
image: mysql:5.7
volumes:
- ./mysql_keycloak_data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: keycloak
MYSQL_USER: keycloak
MYSQL_PASSWORD: password
keycloak:
container_name: keycloak
image: quay.io/keycloak/keycloak:20.0.0
command: [ "start-dev", "--import-realm"]
environment:
DB_VENDOR: MYSQL
DB_ADDR: mysql
DB_DATABASE: keycloak
DB_USER: keycloak
DB_PASSWORD: password
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: admin
ports:
- "8080:8080"
volumes:
- ./realms/:/opt/keycloak/data/import/
depends_on:
- keycloak-mysql
## Zipkin
zipkin:
image: openzipkin/zipkin
container_name: zipkin
ports:
- "9411:9411"
## Eureka Server
discovery-server:
image: anildevops21/discovery-server:latest
container_name: discovery-server
pull_policy: always
ports:
- "8761:8761"
environment:
- SPRING_PROFILES_ACTIVE=docker
depends_on:
- zipkin
api-gateway:
image: anildevops21/api-gateway:latest
container_name: api-gateway
pull_policy: always
ports:
- "8181:8080"
expose:
- "8181"
environment:
- SPRING_PROFILES_ACTIVE=docker
- LOGGING_LEVEL_ORG_SPRINGFRAMEWORK_SECURITY= TRACE
depends_on:
- zipkin
- discovery-server
- keycloak
## Product-Service Docker Compose Config
product-service:
container_name: product-service
image: anildevops21/product-service:latest
pull_policy: always
environment:
- SPRING_PROFILES_ACTIVE=docker
depends_on:
- mongo
- discovery-server
- api-gateway
## Order-Service Docker Compose Config
order-service:
container_name: order-service
image: anildevops21/order-service:latest
pull_policy: always
environment:
- SPRING_PROFILES_ACTIVE=docker
- SPRING_DATASOURCE_URL=jdbc:postgresql://postgres-order:5431/order-service
depends_on:
- postgres-order
- zipkin
- discovery-server
- api-gateway
## Inventory-Service Docker Compose Config
inventory-service:
container_name: inventory-service
image: anildevops21/inventory-service:latest
pull_policy: always
environment:
- SPRING_PROFILES_ACTIVE=docker
- SPRING_DATASOURCE_URL=jdbc:postgresql://postgres-inventory:5432/inventory-service
depends_on:
- postgres-inventory
- discovery-server
- api-gateway