-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
71 lines (57 loc) · 1.37 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
version: '3.4'
services:
gateway.api:
container_name: Gateway.API
image: ${DOCKER_REGISTRY-}gatewayapi
build:
context: .
dockerfile: Gateway.API/Dockerfile
depends_on:
- auth.api
- payment.api
auth.api:
container_name: Auth.API
image: ${DOCKER_REGISTRY-}authapi
build:
context: .
dockerfile: Auth.API/Dockerfile
depends_on:
- auth.db
payment.api:
container_name: Payment.API
image: ${DOCKER_REGISTRY-}paymentapi
build:
context: .
dockerfile: Payment.API/Dockerfile
depends_on:
- rabbitmq
administration.api:
image: ${DOCKER_REGISTRY-}administrationapi
build:
context: .
dockerfile: Administration.API/Dockerfile
person.api:
image: ${DOCKER_REGISTRY-}personapi
build:
context: .
dockerfile: Person.API/Dockerfile
lease.api:
image: ${DOCKER_REGISTRY-}leaseapi
build:
context: .
dockerfile: Lease.API/Dockerfile
landlot.api:
image: ${DOCKER_REGISTRY-}landlotapi
build:
context: .
dockerfile: Landlot.API/Dockerfile
complaint.api:
image: ${DOCKER_REGISTRY-}complaintapi
build:
context: .
dockerfile: Complaint.API/Dockerfile
preparation.api:
image: ${DOCKER_REGISTRY-}preparationapi
build:
context: .
dockerfile: Preparation.API/Dockerfile