Skip to content

Commit 8c220d5

Browse files
committed
fix(api-gateway): fixed ci/cd
1 parent 64578a8 commit 8c220d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/api-gateway/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import { AppModule } from './app.module';
33

44
async function bootstrap() {
55
const app = await NestFactory.create(AppModule);
6-
await app.listen(8080);
6+
await app.listen(8080, '0.0.0.0');
77
}
88
bootstrap();

0 commit comments

Comments
 (0)