/nest-docker-redis-app

An example of Nest - Docker - Redis app

Primary LanguageTypeScript

Nest Docker-Redis app example

An example of a NestJS application with Docker

Prerequisites

Install nestJS CLI

npm i -g @nestjs/cli

Installation

  1. Clone this project
git clone https://github.com/jlsubia404/nest-docker-redis-app.git

Run locally

  1. Run
npm install
  1. Run
npm run start
  1. Open your browser at http://localhost:3000
  2. For puting a value into redis db, browse this URL http://localhost:3000/putValue

Run in a container

  1. Run
docker-compose up

Run in debug mode

  1. Locally
npm run start:debug
  1. In a container
docker-compose -f docker-compose.debug.yml up