File size: 286 Bytes
f91b2f3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
version: '3.8'

services:
  app:
    build: .
    container_name: node_app
    restart: unless-stopped
    ports:
      - "7983:7983"
    environment:
      - NODE_ENV=production
    volumes:
      - .:/home/node/app
      - /home/node/app/node_modules
    command: ["node", "index.js"]