cash_tracker/docker-compose.yml
2025-08-28 23:04:25 +03:00

28 lines
488 B
YAML

version: '3.8'
services:
frontend:
build:
context: .
dockerfile: Dockerfile.frontend
ports:
- "3000:3000"
depends_on:
- backend
environment:
- VITE_API_URL=http://backend:3001
backend:
build:
context: ./server
dockerfile: Dockerfile
ports:
- "3001:3001"
volumes:
- sqlite_data:/app/data
environment:
- NODE_ENV=production
- DATABASE_PATH=/app/data/cashback.db
volumes:
sqlite_data: