fix: Fixed issue with update runtime ExtraHosts failed (#10909)

This commit is contained in:
CityFun 2025-11-10 18:38:39 +08:00 committed by GitHub
parent c6fe487e46
commit 51ae668154
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -480,6 +480,7 @@ func (r *RuntimeService) Update(req request.RuntimeUpdate) error {
ExposedPorts: req.ExposedPorts,
Environments: req.Environments,
Volumes: req.Volumes,
ExtraHosts: req.ExtraHosts,
},
}
composeContent, envContent, _, err := handleParams(create, projectDir)