如何修复dockerized apt-cacher-ng服务仅侦听IPv6

时间:2019-03-14 13:52:49

标签: docker ubuntu debian

Need help dockerize an apt-cacher-ng service之后,问题之一是,尽管我的apt-cacher-ng服务已启动并正在运行,但它仅在侦听IPv6:

$ netstat -tanp  | grep 3142
(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
tcp6       0      0 :::3142                 :::*                    LISTEN      -

同样,我正在关注

Dockerize apt-cacher-ng服务
https://docs.docker.com/engine/examples/apt-cacher-ng/

该文档是否缺少某些内容?
(我从文档中更改的唯一一件事是将“ FROM”库从ubuntu替换为debian:sid

1 个答案:

答案 0 :(得分:1)

实际上,您的服务也在侦听IPv4接口。 maxWait输出中的IPv6侦听是netstatnetstat组合的问题。在问题Make docker use IPv4 for port binding

中查看更多详细信息