我正在跟进
Dockerize apt-cacher-ng服务https://docs.docker.com/engine/examples/apt-cacher-ng/
但未能使其运转起来。
我成功地跟着去了 要查看日志文件……
网络更复杂,因为容器在自己的网络命名空间中运行。看听:
$ netstat -tanp | grep 3142 tcp 0 0 172.17.0.1:39182 172.17.0.1:3142 TIME_WAIT - tcp6 0 0 :::3142 :::* LISTEN 46336/docker-proxy
最好的选择是从主机操作系统检查(apt-cacher-ng在端口3142上的所有接口上公开) curl :
curl
$ curl http://127.0.0.1:3142 <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="X-UA-Compatible" content="IE=8" /> <meta name="MSSmartTagsPreventParsing" content="true" /> <title>Not Found or APT Reconfiguration required</title> <link rel="stylesheet" type="text/css" href="/style.css" /> </head> ...