报错 Cannot connect to the Docker daemon. Is the docker daemon running on this host? 这个错误只要输入docker -d就行了. 因为docker服务没有开启. 查看镜像 docker images 应该又会有docker-spring 标记镜像 docker tag docker-spring:latest 127.0.0.1:5000/docker-spring 安装registry docker pull re…
这个是从每天的播报平台抓取到国外的信息发现的,感觉很实用. 博客原文,E文好的可以直接去看,https://samaritan.ai/blog/reversing-docker-images-into-dockerfiles/ code: https://github.com/sevck/WhaleTail 依赖,golang cd $GOPATH/src git clone https://github.com/P3GLEG/WhaleTail go build . help ./WhaleT…
FROM # FROM scratch, FROM centos, FROM ubuntu:latest LABEL RUN # 每运行一次RUN,image都会生成新的一层,为了美观,避免无用分层,尽量合并多条命令为一条, 比如 yum install vim && yum install gcc, 反斜线换行,最后清理cache rm -rf /var/lib/apt/lists/* WORKDIR # 设定当前目录,类似linux cd, 没有目录会自动创建目录, 尽…