-
Notifications
You must be signed in to change notification settings - Fork 54
/
docker-compose.yml
55 lines (47 loc) · 1.19 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
version: '3.4'
services:
duber.invoice.api:
image: duber/invoice.api:${TAG:-latest}
build:
context: .
dockerfile: src/Application/Duber.Invoice.API/Dockerfile
depends_on:
- sql.data
- rabbitmq
duber.trip.api:
image: duber/trip.api:${TAG:-latest}
build:
context: .
dockerfile: src/Application/Duber.Trip.API/Dockerfile
depends_on:
- nosql.data
- rabbitmq
duber.website:
image: duber/website:${TAG:-latest}
build:
context: .
dockerfile: src/Web/Duber.WebSite/Dockerfile
depends_on:
- duber.invoice.api
- duber.trip.api
- sql.data
- rabbitmq
sql.data:
image: microsoft/mssql-server-linux:2017-latest
nosql.data:
image: mongo
rabbitmq:
image: rabbitmq:3-management
ports:
- "15672:15672"
- "5672:5672"
externalsystem.payment:
image: externalsystem/paymentservice:${TAG:-latest}
build:
context: .
dockerfile: ExternalSystem/PaymentService/Dockerfile
duber.trip.notifications:
image: duber/trip.notifications:${TAG:-latest}
build:
context: .
dockerfile: src/Application/Duber.Trip.Notifications/Dockerfile