在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
)
答案 0 :(得分:1)
实际上,您的服务也在侦听IPv4接口。 maxWait
输出中的IPv6侦听是netstat
和netstat
组合的问题。在问题Make docker use IPv4 for port binding