centos/kali下docker环境/镜像源配置安装
附录
阿里云 centos yum 源:https://developer.aliyun.com/mirror/centos
阿里云 docker 镜像加速:cr.console.aliyun.com
step1 查看linux内核
Docker需要Linux内核大于 3.10 并且是 64位 的,可以用 uname -a 可以查看是否符合要求
uname -a
Linux kali 5.18.0-kali5-amd64 #1 SMP PREEMPT_DYNAMIC Debian 5.18.5-1kali6 (2022-07-07) x86_64 GNU/Linux
上面这是我的版本信息
step2 添加https方法和CA证书
apt-get install -y apt-transport-https ca-certificates
step3 安装/更新dirmngr
apt-get install dirmngr
step4 添加一个新的GPG key
curl -fsSL https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian/gpg | sudo apt-key add -
step5 加入docker源
echo 'deb https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian/ buster stable' | sudo tee /etc/apt/sources.list.d/docker.list
step6 更新源
apt-get update
step7 安装docker
apt install docker-ce
step8 查看docker版本
docker -v
step9 安装daemon
apt-get install daemon
step10 安装docker-compose
Linux python配置清华源
修改 /root/.pip/pip.conf (没有就创建一个), 内容如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
#然后就可以安装docker-compose了
pip install docker-compose
step11 docker加速源
vim etc/docker/daemon.json
#没有该文件就新建一个,然后写入
{"registry-mirrors":["https://hub-mirror.c.163.com/"]}
#这里用的网易云