2025-02-22 21:18:41 +07:00
|
|
|
services:
|
|
|
|
nodejs-app:
|
2025-03-01 00:40:53 -05:00
|
|
|
image: node:latest
|
|
|
|
working_dir: /usr/src/app
|
2025-02-28 23:14:06 -05:00
|
|
|
volumes:
|
|
|
|
- .:/usr/src/app
|
2025-03-01 00:40:53 -05:00
|
|
|
command: sh -c "npm install && npx nodemon"
|
|
|
|
ports:
|
|
|
|
- "3000:3000"
|