-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (30 loc) · 919 Bytes
/
docker-compose.yml
File metadata and controls
31 lines (30 loc) · 919 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
services:
google-meet-bot:
build: .
volumes:
- .:/usr/src/app
- /usr/src/app/node_modules
working_dir: /usr/src/app
environment:
- NODE_ENV=development
ports:
- "3000:3000"
# command: ["npm", "start"]
# xvfb-run --auto-servernum --server-args='-screen 0 1280x720x24' npm start
# command: ["xvfb-run", "--auto-servernum", "--server-args='-screen 0 1280x720x24'", "npm", "start"]
command: ["tail", "-f", "/dev/null"]
diart-service:
build:
context: ./diart-service
dockerfile: diart.Dockerfile
ports:
- "7007:7007"
environment:
- PYTHONUNBUFFERED=1
- HF_TOKEN=${HF_TOKEN}
volumes:
- ./diart-service:/usr/src/app
- cache:/root/.cache
command: ["conda", "run", "--no-capture-output", "-n", "diart", "uvicorn", "app.server:app", "--host", "0.0.0.0", "--port", "7007", "--reload"]
volumes:
cache: