MLOPs_end2end_api / docker-compose.yml
Jansen Daren Zumel
Add docker
8b902f8
Raw
History Blame Contribute Delete
444 Bytes
services:
api:
build: .
container_name: computer-durability-api
ports:
- "8000:8000"
gradio:
build: .
container_name: computer-durability-gradio
command: python app.py
ports:
- "7860:7860"
environment:
- HF_API_URL=http://api:8000
depends_on:
- api
test:
build: .
container_name: computer-durability-test
command: python -m pytest --cov=. --cov-report=term-missing