Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/yuanyu90221/nestjs_docker_sample
- Owner: yuanyu90221
- Created: 2023-04-13T15:53:03.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-04-13T15:53:27.000Z (over 1 year ago)
- Last Synced: 2024-04-21T14:00:48.677Z (9 months ago)
- Language: TypeScript
- Size: 88.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```