2
为什么不允许在docker-compose.yml中使用布尔值?
在docker-compose.yml文件中定义布尔值: environment: SOME_VAR: true 运行docker up结果如下: contains true, which is an invalid type, it should be a string, number, or a null 试图解决问题 如果将true更改为True,则问题仍然存在。 使用'true'不是由代码本身接受(戏剧框架的应用程序是使用开始./target/universal/stage/bin/APPNAME -Dplay.evolutions.db.default.autoApply=,即无论是-Dplay.evolutions.db.default.autoApply=true或-Dplay.evolutions.db.default.autoApply=false参数): VAR的类型为STRING,而不是BOOLEAN 使用yes或no作为变量会导致: 包含true,这是无效的类型,应为字符串,数字或null 使用yes和使用可转换yes为真实作品的脚本 讨论区 根据文档 Any boolean values; true, false, yes no, need to be enclosed in quotes to ensure they are not …