从镜像中提取dockerfile的两种方法

history

docker history nginx:latest
#命令看的不完全,只能看到前面的一小部分
docker history nginx:latest --no-trunc

dfimage

dfimage是一个alpine的镜像,启动的时候,通过将docker.sock映射到容器内部来运行,通常将这个操作做成别名,让他变成一个工具(做完别名不能换新的bash,否则该别名就会消失,如果不想消失,可以做一个永久的别名,这样不管在任何地方都可以用了)

alpine/dfimage

$ alias dfimage="docker run -v /var/run/docker.sock:/var/run/docker.sock --rm alpine/dfimage"
$ dfimage -sV=1.36 nginx:mainline-alpine

https://www.detool.cn/art/14848.html