We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d0ad92 commit 1588c06Copy full SHA for 1588c06
cmd/start.go
@@ -334,6 +334,10 @@ func setFixedConfigs(conf *config.Config) {
334
warnIfNotEqual("volume mount type", conf.MountType, fixedConf.MountType)
335
conf.MountType = fixedConf.MountType
336
}
337
+ if fixedConf.Network.Address && !conf.Network.Address {
338
+ log.Warnln("network address cannot be disabled once enabled")
339
+ conf.Network.Address = true
340
+ }
341
342
343
func prepareConfig(cmd *cobra.Command) {
0 commit comments