team-1/docker-compose.yml

21 lines
417 B
YAML
Raw Permalink Normal View History

2025-08-01 18:07:11 +02:00
services:
2025-08-01 20:56:48 +02:00
backend:
build: ./backend
ports:
- 5001:5000
environment:
NODE_ENV: development
volumes:
- ./backend:/app
- ./.data:/app/.data
2025-08-01 23:20:53 +02:00
env_file:
- .env
2025-08-01 18:07:11 +02:00
2025-08-01 20:56:48 +02:00
frontend:
build: ./frontend
ports:
- 5173:5173
volumes:
- ./frontend:/app
- /app/node_modules