nestjs-prisma-docker
nestjs-prisma-docker copied to clipboard
Dockerizing a NestJS app with Prisma and PostgreSQL
NestJS Prisma Docker
DON'T commit .env files into version control, add
.envto.gitignore..envfiles 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