container_name: SERVICE_NAME
stateless: true
platforms:
  local:
    envfile: .env
    build: npm install && node app.js
  docker:
    envfile: .env
    build: ./run.Dockerfile
    ports:
      - PORT:9000
    volumes:
      - DIRECTORY_PATH:/app
      - /app/node_modules
