kali安装docker教程
kali安装docker教程因为数据库概论要做一个TPC-DS的大作业,其中要用到docker,因此写个博客记录一下。安装https协议、CA证书、dirmngr输入命令:apt-get update将源镜像更新输入命令:apt-get install -y apt-transport-https ca-certificates安装CA证书和https协议输入命令:apt-get install
kali安装docker教程
因为数据库概论要做一个TPC-DS的大作业,其中要用到docker,因此写个博客记录一下。
虚拟机版本:VMvare 15.5 Pro
Linux版本:kali2020 Linux(基于Debian 10.x 64位)
安装https协议、CA证书、dirmngr
输入命令:apt-get update
将源镜像更新
输入命令:apt-get install -y apt-transport-https ca-certificates
安装CA证书和https协议
输入命令:apt-get install dirmngr
添加GPG密钥并添加更新源
输入命令:curl -fsSL https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian/gpg | sudo apt-key add –
运行结果:
输入命令:echo ‘deb https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian/ buster stable’ | sudo tee /etc/apt/sources.list.d/docker.list
运行结果:
第一条命令是将清华镜像的GPG密钥下载下来并且将该镜像加入到系统配置的镜像中去。
第二条命令是用正则表达式判断是否已经把清华的镜像添加进系统配置。
系统更新以及安装docker
输入命令:apt-get update
运行结果:
输入命令:apt-get install docker-ce
运行结果:
启动docker服务器
输入命令:service docker start
安装compose
输入命令:apt install docker-compose
运行结果:
Docker安装测试(hello-world)
输入命令:docker run hello-world
运行结果:
经测试,证明docker已经安装成功。
参考文章
https://zhuanlan.zhihu.com/p/82361096
更多推荐
所有评论(0)