-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
46 lines (46 loc) · 976 Bytes
/
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
version: '3'
services:
api:
build: 'techflix-api'
ports:
- "8080:8080"
env_file:
- docker.env
depends_on:
- library
- metadata
- ratings
library:
build: 'library-service'
ports:
- "8000:3000"
metadata:
build: 'metadata-service'
ports:
- "8001:3000"
env_file:
- docker.env
- docker-secret.env
ratings:
build: 'ratings-service'
ports:
- "8002:3000"
env_file:
- docker.env
- docker-secret.env
ui:
build: 'techflix-ui'
ports:
- "3000:3000"
env_file:
- docker.env
depends_on:
- api
player:
build: 'techflix-player'
ports:
- "3001:3000"
env_file:
- docker.env
depends_on:
- api