live-transcription-docker / docker-compose.yml
Sofia Casadei
ft: run locally via Docker
ea07abc
raw
history blame contribute delete
251 Bytes
version: '3'
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "7860:7860"
volumes:
- ./:/app
restart: unless-stopped
env_file: .env
command: uvicorn main:app --host 0.0.0.0 --port 7860