问题描述
我不确定如何命名Dockerfile. GitHub上的许多人都使用Dockerfile
而没有文件扩展名.我给他们起一个名字和扩展名吗?如果是这样怎么办?还是我只称它们为Dockerfile
?
I'm unsure of how to name Dockerfiles. Many on GitHub use Dockerfile
without a file extension. Do I give them a name and extension; if so what? Or do I just call them Dockerfile
?
推荐答案
如果要在hub.docker.com上使用自动生成器,请不要更改dockerfile的名称.不要对docker文件使用扩展名,请将其保留为空.文件名应该是:(完全没有扩展名)
Don't change the name of the dockerfile if you want to use the autobuilder at hub.docker.com. Don't use an extension for docker files, leave it null. The filename should just be: (no extension at all)
Dockerfile
但是,您也可以像下面这样...
however, you can do like below too...
dev.Dockerfile
,uat.Dockerfile
,prod.Dockerfile
等
在VS Code上,您可以使用<purpose>.Dockerfile
,它可以正常工作.
On VS Code you can use <purpose>.Dockerfile
and it works accordingly.
这篇关于如何命名Dockerfiles的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!