-
Notifications
You must be signed in to change notification settings - Fork 558
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
28 lines (27 loc) · 936 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
28 lines (27 loc) · 936 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
services:
deeppresenter-host:
build:
context: .
dockerfile: deeppresenter/docker/Host.Dockerfile
args:
http_proxy: ${http_proxy:-}
https_proxy: ${https_proxy:-}
no_proxy: ${no_proxy:-}
image: deeppresenter-host
container_name: deeppresenter-host
ports:
- "7861:7861"
environment:
DEEPPRESENTER_HOST_WORKSPACE_BASE: ${PWD}/workspace
DEEPPRESENTER_WORKSPACE_BASE: /opt/workspace
DEEPPRESENTER_LOG_LEVEL: 0 # 0: debug, 10: info, 20: warning
volumes:
- ./workspace:/opt/workspace
- ./deeppresenter:/usr/src/pptagent/deeppresenter
- /usr/src/pptagent/deeppresenter/html2pptx/node_modules
- /var/run/docker.sock:/var/run/docker.sock
- /usr/bin/docker:/usr/bin/docker:ro
- $HOME/.cache/huggingface:/root/.cache/huggingface
- $HOME/.cache/modelscope:/root/.cache/modelscope
volumes:
deeppresenter_workspace: