25 lines
448 B
YAML
25 lines
448 B
YAML
services:
|
|
frontend:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- '5000:5173'
|
|
volumes:
|
|
- .:/app
|
|
- /app/node_modules
|
|
environment:
|
|
- PORT=5173
|
|
|
|
backend:
|
|
build:
|
|
context: ./fusero-backend
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- '3001:3001'
|
|
volumes:
|
|
- ./fusero-backend:/app/fusero-backend
|
|
- /app/fusero-backend/node_modules
|
|
environment:
|
|
- PORT=3001
|