菜鸟笔记
提升您的技术认知

docker 安装 apt-ag真人游戏

阅读 : 1193

当你有许多docker服务器,或者不能使用docker缓存来构建不相干的docker容器,他可以为你的包缓存代理,这是非常有用的。该容器使第二个下载的任何包几乎瞬间下载。

使用下边的dockerfile

#
# 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
#
from        ubuntu
maintainer  [email protected]
volume      ["/var/cache/apt-cacher-ng"]
run     apt-get update ; apt-get install -yq 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/*

使用下边的命令构建镜像:

$ sudo docker build -t eg_apt_cacher_ng .

现在运行它,映射内部端口到主机

$ sudo docker run -d -p 3142:3142 --name test_apt_cacher_ng eg_apt_cacher_ng

查看日志文件,默认使用tailed命令,你可以使用

$ sudo docker logs -f test_apt_cacher_ng

让你debian-based容器使用代理,你可以做三件事之一:

1.添加一个apt代理设置echo 'acquire::http { proxy "http://dockerhost:3142"; };' >> /etc/apt/conf.d/01proxy

2.设置环境变量:http_proxy=http://dockerhost:3142/

3.修改你的sources.list来开始http://dockerhost:3142/

选项1注入是安全设置到你的apt配置在本地的公共基础版本。

from ubuntu
run  echo 'acquire::http { proxy "http://dockerhost:3142"; };' >> /etc/apt/apt.conf.d/01proxy
run apt-get update ; apt-get install vim git
# docker build -t my_ubuntu .

选项2针对测试时非常好的,但是会破坏其它从http代理的http客户端,如curl 、wget或者其他:

$ sudo docker run --rm -t -i -e http_proxy=http://dockerhost:3142/ debian bash

选项3是最轻便的,但是有时候你可能需要做很多次,你也可以在你的dockerfile这样做:

$ sudo docker run --rm -t -i --volumes-from test_apt_cacher_ng eg_apt_cacher_ng bash
$$ /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

最后,停止测试容器,删除容器,删除镜像:

$ sudo docker stop test_apt_cacher_ng
$ sudo docker rm test_apt_cacher_ng
$ sudo docker rmi eg_apt_cacher_ng
网站地图