-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
40 lines (38 loc) · 1.33 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
version: '3'
services:
# human-pose-estimation
model_human_pose:
image: openvino/model_server:latest
restart: unless-stopped
ports:
- '9000:9000'
volumes:
- ./models/human-pose-estimation:/models/human-pose-estimation
command: '/ovms/bin/ovms --model_path /models/human-pose-estimation --model_name human-pose-estimation --port 9000 --log_level INFO --shape auto --grpc_workers 2'
networks:
- model_server
# handwritten-japanese-recognition
handwritten:
image: openvino/model_server:latest
restart: unless-stopped
ports:
- '9001:9001'
volumes:
- ./models/handwritten-japanese-recognition:/models/handwritten-japanese-recognition
command: '/ovms/bin/ovms --model_path /models/handwritten-japanese-recognition --model_name handwritten-japanese-recognition --port 9001 --log_level INFO --shape auto --grpc_workers 2'
networks:
- model_server
# colorization
colorization:
image: openvino/model_server:2021.1
restart: unless-stopped
ports:
- '9002:9002'
volumes:
- ./models/colorization-v2:/models/colorization-v2
command: '/ovms/bin/ovms --model_path /models/colorization-v2 --model_name colorization --port 9002 --log_level INFO --shape auto --grpc_workers 2'
networks:
- model_server
networks:
model_server:
driver: bridge