docker-compose

This commit is contained in:
2026-02-14 04:01:55 +00:00
parent bad92f64de
commit e9b410fd62
4 changed files with 428 additions and 0 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
version: '3.8'
services:
backend:
build: ./backend
ports:
- "3001:3001"
environment:
- PORT=3001
frontend:
build: ./frontend
ports:
- "3000:3000"
environment:
- PORT=3000
- BACKEND_URL=http://localhost:3001
depends_on:
- backend