kali中docker拉取镜像
kali中docker拉取镜像,hello-world ,nginx
·
拉取 hello-world 镜像
1.首先进入root用户:sudo -s
2.拉取命令: docker pull hello_world
3.查看docker当前镜像: docker images
4.运行镜像:docker run --name myhelloworld hello-world
5.删除镜像: docker rmi -f hello-world:latest
拉取 nginx 镜像
1.拉取: docker pull nginx
2.查看: docker images
3.运行nginx:docker run -d -p 80:80 nginx
并查看后台: docker ps
4.删除镜像:docker rmi -f nginx:leatest
最后这步好像出了点问题,查看docker当前镜像的时候,虽然没了nginx ,但是还有一个命名【None】,后面内容是刚才nginx的时间和大小,希望大神指点!
更多推荐
已为社区贡献1条内容
所有评论(0)