Files
links/docker-compose.yml
T
2025-09-13 23:46:11 +02:00

14 lines
258 B
YAML

version: '3.8'
services:
app:
image: node:18
working_dir: /usr/src/app
volumes:
- ./:/usr/src/app
ports:
- "3001:3000"
environment:
- NODE_ENV=production
- PORT=3000
command: sh -c "npm install && npm start"