-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (36 loc) · 780 Bytes
/
docker-compose.yml
File metadata and controls
40 lines (36 loc) · 780 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
version: "3"
services:
server:
build:
context: .
dockerfile: ./Docker/Server.Dockerfile
image: vid-stream-back:latest
command: make run-server
ports:
- 50051:50051
py-client:
build:
context: .
dockerfile: ./Docker/Client.Dockerfile
image: vid-stream-client:latest
network_mode: host
command: make run-client
restart: on-failure:10
depends_on:
- server
js-client:
build:
context: ./vidview
dockerfile: ./Docker/JS.Dockerfile
image: vid-stream-js-client:latest
command: npm start
restart: always
ports:
- 3000:3000
envoy:
build:
context: .
dockerfile: ./Docker/Envoy.Dockerfile
image: vid-stream-envoy
ports:
- 8080:8080