-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
73 lines (63 loc) · 1.35 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
services:
consul:
image: consul:latest
nosqldata:
image: mongo
postgres:
image: postgres
cache:
image: "redis:alpine"
seq:
image: datalust/seq:latest
rabbitmq:
image: rabbitmq:3-management-alpine
identity.api:
image: ${DOCKER_REGISTRY-}identity.api
build:
context: .
dockerfile: src/Services/Identity/Career.Identity/Dockerfile
depends_on:
- postgres
- seq
- consul
definition.api:
image: ${DOCKER_REGISTRY-}definition.api
build:
context: .
dockerfile: src/Services/Definition/Definition.Api/Dockerfile
depends_on:
- nosqldata
- cache
- seq
- consul
company.api:
image: ${DOCKER_REGISTRY-}company.api
build:
context: .
dockerfile: src/Services/Company/Company.Api/Dockerfile
depends_on:
- postgres
- nosqldata
- rabbitmq
- seq
- consul
job.api:
image: ${DOCKER_REGISTRY-}job.api
build:
context: .
dockerfile: src/Services/Job/Job.Api/Dockerfile
depends_on:
- nosqldata
- rabbitmq
- seq
- consul
cv.api:
image: ${DOCKER_REGISTRY-}cv.api
build:
context: .
dockerfile: src/Services/CV/CV.Api/Dockerfile
depends_on:
- nosqldata
- rabbitmq
- seq
- consul