-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
40 lines (40 loc) · 872 Bytes
/
compose.yaml
File metadata and controls
40 lines (40 loc) · 872 Bytes
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
services:
movie-finder:
container_name: movie-finder
build:
context: .
target: movie-finder
environment:
- PORT=50051
- MOVIE_STORE_SERVER_ENDPOINT=movie-store:50051
- USER_PREFERENCES_SERVER_ENDPOINT=user-preferences:50051
- RECOMMENDER_SERVER_ENDPOINT=recommender:50051
ports:
- 50051:50051
user-preferences:
container_name: user-preferences
build:
context: .
target: user-preferences
environment:
- PORT=50051
ports:
- 50052:50051
recommender:
container_name: recommender
build:
context: .
target: recommender
environment:
- PORT=50051
ports:
- 50053:50051
movie-store:
container_name: movie-store
build:
context: .
target: movie-store
environment:
- PORT=50051
ports:
- 50054:50051