setu / docker-compose.yml
khagu's picture
chore: finally untrack large database files
3998131
services:
backend:
build:
context: .
dockerfile: Backend.Dockerfile
ports:
- "8000:8000"
env_file:
- .env
volumes:
- ./data:/app/data
restart: always
frontend:
build:
context: .
dockerfile: Frontend.Dockerfile
ports:
- "3000:3000"
environment:
- NEXT_PUBLIC_BACKEND_URL=http://localhost:8000
depends_on:
- backend
restart: always