Voice_Assistant / docker-compose.yml
Baskar2005's picture
Upload 4 files
0a59327 verified
raw
history blame contribute delete
393 Bytes
version: '3.8'
services:
backend:
build:
context: ./backend # Build context is set to the backend folder
ports:
- "2000:2000" # Map the container's port to the host's port
frontend:
build:
context: ./frontend
ports:
- "3000:3000"
depends_on:
- backend
environment:
- CHOKIDAR_USEPOLLING=true