Dockerize apt-cacher-ng服务
预计阅读时间:4分钟
注意事项:
- 如果您不喜欢sudo,请参阅 授予非root用户访问权限。
- 如果您通过TCP使用macOS或docker,则不应使用sudo。
当您有多个Docker服务器,或构建无法利用Docker构建缓存的不相关的Docker容器时,为您的软件包提供一个缓存代理会很有用。这个容器几乎可以立即下载任何软件包。
使用以下Dockerfile:
# syntax=docker/dockerfile:1
# Build: docker build -t apt-cacher .
# Run: docker run -d -p 3142:3142 --name apt-cacher-run apt-cacher
#
# and then you can run containers with:
# docker run -t -i --rm -e http_proxy http://dockerhost:3142/ debian bash
#
# Here, `dockerhost` is the IP address or FQDN of a host running the Docker daemon
# which acts as an APT proxy server.
FROM ubuntu
VOLUME ["/var/cache/apt-cacher-ng"]
RUN apt-get update && apt-get install -y apt-cacher-ng
EXPOSE 3142
CMD chmod 777 /var/cache/apt-cacher-ng && /etc/init.d/apt-cacher-ng start && tail -f /var/log/apt-cacher-ng/*
要使用以下方法生成图像:
$ docker build -t eg_apt_cacher_ng .
然后运行它,将裸露的端口映射到主机上的一个端口
$ docker run -d -p 3142:3142 --name test_apt_cacher_ng eg_apt_cacher_ng
要查看tailed
默认命令中的日志文件,可以使用:
$ docker logs -f test_apt_cacher_ng
要使基于Debian的容器能够使用代理,您可以使用以下选项。替换dockerhost
为运行test_apt_cacher_ng
容器的主机的IP地址或FQDN 。
- 添加适当的代理设置
echo 'Acquire::http { Proxy "http://dockerhost:3142"; };' >> /etc/apt/conf.d/01proxy
- 设置环境变量:
http_proxy=http://dockerhost:3142/
- 更改您的
sources.list
条目以开始http://dockerhost:3142/
- 使用以下方法将基于Debian的容器链接到APT代理容器
--link
- 使用基于Debian的容器创建一个APT代理容器的自定义网络。
选项1将设置安全地注入到公共基础的本地版本中的apt配置中:
# syntax=docker/dockerfile:1
FROM ubuntu
RUN echo 'Acquire::http { Proxy "http://dockerhost:3142"; };' >> /etc/apt/apt.conf.d/01proxy
RUN apt-get update && apt-get install -y vim git
# docker build -t my_ubuntu .
选项2是测试好,但符其他HTTP客户端,其服从http_proxy
,比如curl
,wget
和其他人:
$ docker run --rm -t -i -e http_proxy=http://dockerhost:3142/ debian bash
选项3是最不便携的,但是您可能需要这样做,也可以从中进行Dockerfile
。
选项4使用以下命令将Debian容器链接到代理服务器:
$ docker run -i -t --link test_apt_cacher_ng:apt_proxy -e http_proxy=http://apt_proxy:3142/ debian bash
选项5创建一个APT代理服务器和基于Debian的容器的自定义网络:
$ docker network create mynetwork
$ docker run -d -p 3142:3142 --network=mynetwork --name test_apt_cacher_ng eg_apt_cacher_ng
$ docker run --rm -it --network=mynetwork -e http_proxy=http://test_apt_cacher_ng:3142/ debian bash
Apt-cacher-ng有一些工具可让您管理存储库,并且可以利用VOLUME
指令和我们为运行该服务而构建的映像来使用它们:
$ docker run --rm -t -i --volumes-from test_apt_cacher_ng eg_apt_cacher_ng bash
root@f38c87f2a42d:/# /usr/lib/apt-cacher-ng/distkill.pl
Scanning /var/cache/apt-cacher-ng, please wait...
Found distributions:
bla, taggedcount: 0
1. precise-security (36 index files)
2. wheezy (25 index files)
3. precise-updates (36 index files)
4. precise (36 index files)
5. wheezy-updates (18 index files)
Found architectures:
6. amd64 (36 index files)
7. i386 (24 index files)
WARNING: The removal action may wipe out whole directories containing
index files. Select d to see detailed list.
(Number nn: tag distribution or architecture nn; 0: exit; d: show details; r: remove tagged; q: quit): q
最后,在测试后通过停止并取出容器,然后取出图像进行清理。
$ docker container stop test_apt_cacher_ng
$ docker container rm test_apt_cacher_ng
$ docker image rm eg_apt_cacher_ng