linguacall-backend / docker-compose.yml
roniegbu's picture
feat: Initial commit of Voice Translation App with backend and frontend setup
a606b2b
raw
history blame contribute delete
344 Bytes
version: '3.8'
services:
backend:
build: ./backend
ports:
- "8000:8000"
volumes:
- ./models:/app/models
- ./backend/app:/app/app
environment:
- MODEL_DIR=/app/models
frontend:
image: nginx:alpine
ports:
- "80:80"
volumes:
- ./frontend:/usr/share/nginx/html