无法使用Compose中的服务名称从(有效的)日志驱动程序进行日志记录

我在docker中有以下设置:

应用程序的日志驱动程序的配置描述了流利的容器。日志将保存在ES中,并显示在Kibana中。

当日志驱动程序配置为这种方式时,它可以工作:

web:

image: httpd

container_name: httpd

ports:

- "80:80"

links:

- fluentd

logging:

driver: "fluentd"

options:

fluentd-address: localhost:24224

tag: httpd.access

fluentd正在将其裸露的端口24224映射到主机的端口24224上。

 fluentd:

build: ./fluentd

image: fluentd

container_name: fluentd

links:

- "elasticsearch"

ports:

- "24224:24224"

但是我不想在主机网络上暴露我的流利。我想将其“私有”在docker网络内部(我只想在主机网络上映射应用程序和kibana),如下所示:

 fluentd:

build: ./fluentd

image: fluentd

container_name: fluentd

links:

- "elasticsearch"

端口24224仍处于暴露状态(在dockerfile中),但未映射到主机网络上。现在,我想更改应用程序的日志驱动程序的配置:logging:driver:“

fluentd”选项:fluentd-address:fluentd:24224标签:httpd.access

因此,fluentd是fluentd容器的名称,它们位于同一网络中,但该应用程序无法与其建立连接。

failed to initialize logging driver: dial tcp: lookup fluentd

这是否可能是因为日志记录选项在撰写文件中的“ link”选项之前执行?

有没有办法让这项工作?

回答:

目前无法实现。处理日志驱动程序的docker守护进程是在主机上运行的进程。它不是您网络中的服务,因此无法将服务名称解析为IP。有关更多详细说明,请参见此github问题。

您必须为此发布一个端口。

以上是 无法使用Compose中的服务名称从(有效的)日志驱动程序进行日志记录 的全部内容, 来源链接: utcz.com/qa/399773.html

回到顶部