通过unit-socket将docker-container与其他容器连接

通过unit-socket将docker-container与其他容器连接

我正在尝试通过 unit-socket/ 连接到容器

 docker run -d -v /var/lib/docker/overlay/[container_id]/var/run/postgresql/.s.PGSQL.5432:/socket_volume/.s.PGSQL.5432 -p 50000:8080 my_repo/container_name:latest

在“-v 构造”的主机位置,我编写了从主机根目录到容器中套接字目录的绝对路径。

但我收到:

  Connection refused (socket: /socket_volume/.s.PGSQL.5432)

相关内容