classla-api/docker-compose.yml

15 lines
302 B
YAML
Raw Normal View History

2022-01-18 09:08:59 +00:00
version: "3.7"
2022-01-17 11:13:55 +00:00
services:
app:
build: .
command: python -m flask run --host=0.0.0.0
2022-01-18 09:08:59 +00:00
runtime: nvidia
environment:
- NVIDIA_VISIBLE_DEVICES=all
- NVIDIA_DRIVER_CAPABILITIES=all
- CUDA_VISIBLE_DEVICES=1
2022-01-17 11:13:55 +00:00
ports:
- "5000:5000"
volumes:
2022-01-18 09:08:59 +00:00
- .:/classla-api