我正在创建一个NestJS应用程序,并使用TyeORM连接到我的本地数据库。本地数据库是在后台运行的postgres镜像。我可以使用pgadmin连接到该图像,但在启动应用程序时在图像中附加错误。
这是我添加的用于添加typeorm配置的代码:
@Module({
imports: [
TyreDetailsModule,
TypeOrmModule.forRoot({
type: 'postgres',
host: 'localhost',
port: 5432,
username: 'postgres',
password: 'postgres',
database: 'testDb',
autoLoadEntities: true,
synchronize: true,
}),
],
1条答案
按热度按时间eoigrqb61#
将主机从localhost更改为127.0.0.1起作用。