container_name: SERVICE_NAME
stateless: true
platforms:
  local:
    envfile: .env
    build: npm install && npm run dev
  docker:
    envfile: .env
    build: ./run.Dockerfile
    ports:
      - PORT:3000
    volumes:
      - :/app
      - /app/FOLDER_NAME/node_modules/
