Docker制作Base Image
Docker制作Base Image
Base Image:基于系统的基础镜像
1、编辑Dockerfile
vi Dockerfile
2、写入一下内容
FROM ubuntu CMD echo "hello docker"
3、编译镜像
docker build -t guhaohao/hello-world .
4、查看编译后的镜像
docker image ls
5、运行镜像,成为一个容器
docker run guhaohao/hello-word
6、可以直接拉取官方镜像
docker pull redis
相关推荐
王道革 2020-11-25
魅惑青花瓷 2020-11-11
lihongtai 2020-11-09
TaoTaoFu 2020-11-06
liaochaowu 2020-11-16
ChlatZed 2020-11-11
xysoul 2020-11-03
changecan 2020-09-22
newisI 2020-09-01
链块学院 2020-09-09
lihy0 2020-09-07
fearlessxjdx 2020-09-04
ChlatZed 2020-08-23
bwyyziq 2020-11-22
pigsmall 2020-11-19
changecan 2020-11-19
helloWorldAndYou 2020-11-16
nginxs 2020-11-14
红石丶 2020-11-13