2014-07-31 20:29:38 +00:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
2015-09-18 10:48:16 -07:00
|
|
|
|
|
|
|
derr "github.com/docker/docker/errors"
|
2014-07-31 20:29:38 +00:00
|
|
|
)
|
|
|
|
|
2015-07-30 14:01:53 -07:00
|
|
|
// ContainerExport writes the contents of the container to the given
|
|
|
|
// writer. An error is returned if the container cannot be found.
|
2015-09-29 13:51:40 -04:00
|
|
|
func (daemon *Daemon) ContainerExport(name string, out io.Writer) error {
|
|
|
|
container, err := daemon.Get(name)
|
2014-12-16 15:06:35 -08:00
|
|
|
if err != nil {
|
2015-03-25 08:44:12 +01:00
|
|
|
return err
|
2014-07-31 20:29:38 +00:00
|
|
|
}
|
2014-12-16 15:06:35 -08:00
|
|
|
|
2015-09-29 13:51:40 -04:00
|
|
|
data, err := container.export()
|
2014-12-16 15:06:35 -08:00
|
|
|
if err != nil {
|
2015-09-18 10:48:16 -07:00
|
|
|
return derr.ErrorCodeExportFailed.WithArgs(name, err)
|
2014-12-16 15:06:35 -08:00
|
|
|
}
|
|
|
|
defer data.Close()
|
|
|
|
|
|
|
|
// Stream the entire contents of the container (basically a volatile snapshot)
|
2015-04-12 16:04:01 +02:00
|
|
|
if _, err := io.Copy(out, data); err != nil {
|
2015-09-18 10:48:16 -07:00
|
|
|
return derr.ErrorCodeExportFailed.WithArgs(name, err)
|
2014-12-16 15:06:35 -08:00
|
|
|
}
|
2015-03-25 08:44:12 +01:00
|
|
|
return nil
|
2014-07-31 20:29:38 +00:00
|
|
|
}
|