зеркало из https://github.com/microsoft/docker.git
volume: stream JSON & Decode
Docker-DCO-1.1-Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com> (github: unclejack)
This commit is contained in:
Родитель
4dbbe4f51a
Коммит
f665be55fe
|
@ -154,12 +154,15 @@ func (v *Volume) FromDisk() error {
|
|||
return err
|
||||
}
|
||||
|
||||
data, err := ioutil.ReadFile(pth)
|
||||
jsonSource, err := os.Open(pth)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer jsonSource.Close()
|
||||
|
||||
return json.Unmarshal(data, v)
|
||||
dec := json.NewDecoder(jsonSource)
|
||||
|
||||
return dec.Decode(v)
|
||||
}
|
||||
|
||||
func (v *Volume) jsonPath() (string, error) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче