costco-grocery-list/docker-compose.yml
Nico 3ad4b62991
Some checks failed
Build & Deploy Costco Grocery List / build (push) Failing after 11s
Build & Deploy Costco Grocery List / deploy (push) Has been skipped
binary change?
2025-11-26 14:12:46 -08:00

30 lines
538 B
YAML

services:
frontend:
build:
context: ./frontend
dockerfile: Dockerfile.dev
environment:
- NODE_ENV=development
volumes:
- ./frontend:/app
- /app/node_modules
ports:
- "3000:5173"
depends_on:
- backend
restart: always
backend:
build:
context: ./backend
command: npm run dev
volumes:
- ./backend:/app
- /app/node_modules
ports:
- "5000:5000"
env_file:
- ./backend/.env
restart: always