(Odoo) 为什么我在使用 pganonymizer 时无法连接到服务器?

(Odoo) Why can't i connect to the server when using pganonymizer?

我正在尝试匿名化我数据库中的一些数据,但我得到以下 Error。

Postgres 运行 在容器中的端口 5432 上,我将它暴露在主机上的端口 5433 上。

ports:
  - "5433:5432"

我应该在我的 odoo.conf 文件中添加一些东西吗?

谢谢

最新版本的 pganonymizer 需要您在 subprocess 命令中指定 postgres 主机名和端口。

        if env.get('PGHOST'):
            cmd.extend(['--host', env['PGHOST']])
        if env.get('PGPORT'):
            cmd.extend(['--port', env['PGPORT']])