docker 镜像中的变量

时间:2021-07-01 21:13:58

标签: docker configuration dockerfile

我想使用 dockerfile 创建 docker-image。内容有点像

FROM ...
...
ENTRYPOINT ["myapplication","<...>/configurationfile.xml"]

但是当我运行 docker build ... 时,我收到了 configurationfile.xml 不可用的错误消息。这是有道理的,因为在创建具体容器时,用户应该在一个卷中提供具体的配置文件。

所以现在我想知道:这个问题的最佳实践是什么,如何在运行 docker build ... 时不出现 configurationfile-not-found-error 的情况下实现?

0 个答案:

没有答案