Files
NodeTest/docker-compose.yml
2024-09-15 13:55:29 +02:00

15 lines
314 B
YAML

services:
nodejs:
image: node:22-alpine
working_dir: /usr/project/app
restart: unless-stopped
command: >
sh -c 'echo "Running setup...";
npm install;
echo "Starting the node...";
npm start'
volumes:
- ./:/usr/project/app/:rw
ports:
- "${PORT}:${PORT}"