postgresql 无法使用postgres docker镜像连接到TyreORM模块db

n1bvdmb6  于 2023-06-29  发布在  PostgreSQL
关注(0)|答案(1)|浏览(124)

我正在创建一个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,
    }),
  ],
eoigrqb6

eoigrqb61#

将主机从localhost更改为127.0.0.1起作用。

相关问题