-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
64 lines (47 loc) · 1.21 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
version: '3.4'
services:
subscription.api:
image: ${DOCKER_REGISTRY-}subscriptionapi
build:
context: .
dockerfile: Subscription.API/Dockerfile
streaming.api:
image: ${DOCKER_REGISTRY-}streamingapi
build:
context: .
dockerfile: Streaming.API/Dockerfile
history.api:
image: ${DOCKER_REGISTRY-}historyapi
build:
context: .
dockerfile: History.API/Dockerfile
marketing.api:
image: ${DOCKER_REGISTRY-}marketingapi
build:
context: .
dockerfile: Marketing.API/Dockerfile
profiles.api:
image: ${DOCKER_REGISTRY-}profilesapi
build:
context: .
dockerfile: Profiles.API/Dockerfile
recommendation.api:
image: ${DOCKER_REGISTRY-}recommendationapi
build:
context: .
dockerfile: Recommendation.API/Dockerfile
moviemetadata.api:
image: ${DOCKER_REGISTRY-}moviemetadataapi
build:
context: .
dockerfile: MovieMetadata.API/Dockerfile
identity.api:
image: ${DOCKER_REGISTRY-}identityapi
build:
context: .
dockerfile: Identity.API/Dockerfile
webstatus:
image: ${DOCKER_REGISTRY-}webstatus
build:
context: .
dockerfile: WebStatus/Dockerfile