Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yuanyu90221/nestjs_docker_sample

nestjs with docker sample
https://github.com/yuanyu90221/nestjs_docker_sample

Last synced: 1 day ago
JSON representation

nestjs with docker sample

Awesome Lists containing this project

README

        

# nestjs_docker_sample

This is project is for proof that nestjs no need to specify 0.0.0.0 to accept all source ip from outside

## Example

```typescript
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';

async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
}
bootstrap();

```

## run
```shell
docker-compose up -d
```