gpt4 book ai didi

docker - 如何在构建期间使用Docker配置文件

转载 作者:行者123 更新时间:2023-12-02 20:47:46 25 4
gpt4 key购买 nike

我有一些配置文件需要与动态变量一起添加到容器中。例:

#
# -= One of my app configuration files =-
#

string SERVER = "127.0.0.1";
string LANG = "{dynamic_value}";
string OTHERVAR = "{other_dynamic_value}";

是否可以使用一个外部配置文件来存储所有这些变量?
#
# -= My Docker centralised config file =-
#

dynamic_value = "English";
other_dynamic_value = "North";

因此,添加到我的容器中的结果文件将如下所示:
#
# -= One of my app configuration files =-
#

string SERVER = "127.0.0.1";
string LANG = "English";
string OTHERVAR = "North";

谢谢

最佳答案

https://docs.docker.com/compose/env-file/

您可以使用env文件,也可以在容器启动时使用以下文件调用它们。

-e var ='值'

关于docker - 如何在构建期间使用Docker配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48790346/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com