mirror of
https://github.com/arthur-pbty/links.git
synced 2026-08-01 20:29:27 +02:00
14 lines
258 B
YAML
14 lines
258 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
app:
|
|
image: node:18
|
|
working_dir: /usr/src/app
|
|
volumes:
|
|
- ./:/usr/src/app
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- PORT=3000
|
|
command: sh -c "npm install && npm start" |