forked from AowerDmax/Simple-Interview-Audio-Processing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
40 lines (38 loc) · 1.01 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:
funasr_interview:
image: registry.cn-hangzhou.aliyuncs.com/funasr_repo/funasr:funasr-runtime-sdk-online-cpu-0.1.10
container_name: funasr_interview # 这里是容器名称
ports:
- "10096:10095"
volumes:
- ./funasr-runtime-resources/models_interview:/workspace/models
privileged: true
stdin_open: true
tty: true
funasr_rookie:
image: registry.cn-hangzhou.aliyuncs.com/funasr_repo/funasr:funasr-runtime-sdk-online-cpu-0.1.10
container_name: funasr_rookie # 这里是容器名称
ports:
- "10097:10095"
volumes:
- ./funasr-runtime-resources/models_rookie:/workspace/models
privileged: true
stdin_open: true
tty: true
redis:
image: redis:latest
container_name: redis_server
ports:
- "6379:6379"
volumes:
- redis_data:/data
networks:
- redis_network
command: ["redis-server", "--appendonly", "yes"]
volumes:
redis_data:
driver: local
networks:
redis_network:
driver: bridge