赞
踩
主机 |
---|
kali-2021-4 |
第一步 更新apt-get
apt-get update
第二步 安装docker
apt-get install docker
apt-get install docker.io
第三步 查看版本
docker -v
docker pull <镜像名> # 拉取docker镜像
docker start <镜像名> # 启动镜像
docker ps -a # 查看所有启动过的容器
docker ps # 查看当前启动的容器
docker start <containerID> # 启动docker镜像
docker stop <containerID> # 停止docker镜像
docker exec -it <containerID> /bin/bash #进入<containerID>容器
docker save <镜像名> > /root/xxx.tar #打包镜像
service docker status# 查看docker状态
service docker start# 开启docker服务
service docker stop# 停止docker服务
apt-get install docker-compose
vim /etc/docker/daemon.json
{
"registry-mirrors" : [
"https://registry.docker-cn.com",
"https://docker.mirrors.ustc.edu.cn",
"http://hub-mirror.c.163.com",
"https://cr.console.aliyun.com/"
]
}
systemctl restart docker.service
# 重启使得镜像生效
cd Desktop/vulhub-master/thinkphp/5.0.23-rce
docker-compose up -d
这一年,谢谢自己
选择过不凑合的人生
愿意做内在充实,外在简约的人
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。