2025-06-25 16:45:58 -04:00
|
|
|
services:
|
|
|
|
|
web:
|
|
|
|
|
build:
|
|
|
|
|
context: .
|
|
|
|
|
dockerfile: Dockerfile.dev
|
|
|
|
|
ports:
|
|
|
|
|
- "3001:3001"
|
|
|
|
|
volumes:
|
|
|
|
|
- .:/usr/src/app # Mount the current directory into the container for live reloading
|
2025-07-01 14:17:13 -04:00
|
|
|
- /usr/src/app/node_modules # Isolate node_modules to prevent host-container conflicts
|