npm install
npm run dev
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"prod": "npm run build; npm run start"
// build images and run containers
docker-compose up -d
//remove all containers and images
docker-compose down --rmi all