mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
6b737752e3
Signed-off-by: Antonio Murdaca <me@runcom.ninja>
27 lines
575 B
Go
27 lines
575 B
Go
package daemon
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
func (daemon *Daemon) ContainerExport(name string, out io.Writer) error {
|
|
container, err := daemon.Get(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
data, err := container.Export()
|
|
if err != nil {
|
|
return fmt.Errorf("%s: %s", name, err)
|
|
}
|
|
defer data.Close()
|
|
|
|
// Stream the entire contents of the container (basically a volatile snapshot)
|
|
if _, err := io.Copy(out, data); err != nil {
|
|
return fmt.Errorf("%s: %s", name, err)
|
|
}
|
|
// FIXME: factor job-specific LogEvent to engine.Job.Run()
|
|
container.LogEvent("export")
|
|
return nil
|
|
}
|