sentimentanalysis_hudda / docker-compose.yaml
Hudda's picture
Create docker-compose.yaml
9ba123c verified
raw
history blame contribute delete
No virus
200 Bytes
version: '3'
services:
web:
build: .
command: sh -c "uvicorn main:app --reload --port=8000 --host=0.0.0.0"
env_file:
- .env
ports:
- "8000:8000"
volumes:
- .:/app