1
2
3
4
5
6
7
8
9
10
11
services:

server:
image: node:24
volumes:
- ./app:/app
working_dir: /app
restart: unless-stopped
command: sh -c "npm install && node index.js"
ports:
- 3000:3000