-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
52 lines (44 loc) · 1.05 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
version: '3.4'
services:
gateway:
build:
context: .
dockerfile: traefik/Dockerfile
depends_on:
- auth.service
- crypt.service
- middleware-jwt.val
- redis
client.app:
build:
context: frontend
dockerfile: Dockerfile
depends_on:
- gateway
auth.service:
image: ${DOCKER_REGISTRY-}authservice
build:
context: .
dockerfile: backend/services/Auth.Service/Dockerfile
depends_on:
- redis
middleware-jwt.val:
build:
context: .
dockerfile: backend/middlewares/JwtValidation/Dockerfile
depends_on:
- redis
crypt.service:
image: ${DOCKER_REGISTRY-}cryptservice
build:
context: .
dockerfile: backend/services/Crypt.Service/Dockerfile
crypt.eventprocessor:
image: ${DOCKER_REGISTRY-}crypteventprocessor
build:
context: .
dockerfile: backend/modules/crypt/Crypt.EventProcessor/Dockerfile
redis:
image: redis/redis-stack:latest
rabbitmq:
image: rabbitmq:3.11.4-management-alpine