https://github.com/choewy/nestjs-dockerizing
NestJS Dockerizing
https://github.com/choewy/nestjs-dockerizing
bcrypt docker docker-compose jwt mongodb mongoose mysql nestjs redis throttle typeorm
Last synced: 7 days ago
JSON representation
NestJS Dockerizing
- Host: GitHub
- URL: https://github.com/choewy/nestjs-dockerizing
- Owner: choewy
- Created: 2023-03-16T14:08:40.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-30T16:09:32.000Z (over 2 years ago)
- Last Synced: 2025-01-05T05:31:07.345Z (over 1 year ago)
- Topics: bcrypt, docker, docker-compose, jwt, mongodb, mongoose, mysql, nestjs, redis, throttle, typeorm
- Language: TypeScript
- Homepage:
- Size: 362 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NestJS Dockerizing
## step 1. install dependencies
```zsh
npm ci
```
## step 2. run docker(mongodb, ...etc)
```zsh
npm run start:docker
```
## step 3. start nestjs
```zsh
npm run start:dev
```
## step 4. build nestjs
```zsh
npm run build
```
## step 5. build docker image and run docker container(nestjs)
```zsh
docker-compose up --build -d
```