Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 478 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 478 Bytes

NestJS Prisma Docker

DON'T commit .env files into version control, add .env to .gitignore. .env files are added here as an example.

Develop the Nest application

npm install

cp .env.example .env

npx prisma generate

npm run start:dev

Docker File

Get started by running

docker build -t nest-api .

docker run -p 3000:3000 --env-file .env -d nest-api

Docker Compose

docker-compose up
# or detached
docker-compose up -d