0
点赞
收藏
分享

微信扫一扫

kali安装docker环境

爱读书的歌者 2022-04-04 阅读 51
java后端

最近因为要在kali上搭建一个文件上传测试平台,所以得安装一个docker环境。

  1. 安装https协议、CA证书、dirmngr

    apt-get update

    apt-get install -y apt-transport-https ca-certificates

    apt-get install dirmngr

2.添加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

3.系统更新以及安装docker

apt-get update

apt install docker-ce

4.启动docker服务器

service docker start

5.安装compose

apt install docker-compose

6.docker安装测试(hello-world)

PS:

docker version   查看docker的版本信息
 
docker images   查看拥有的images
 
docker ps       查看docker container 

举报

相关推荐

0 条评论