2014-07-31 20:29:38 +00:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
2015-09-18 17:48:16 +00:00
|
|
|
|
2015-11-12 19:55:17 +00:00
|
|
|
"github.com/docker/docker/container"
|
2015-09-18 17:48:16 +00:00
|
|
|
derr "github.com/docker/docker/errors"
|
2015-11-02 23:53:26 +00:00
|
|
|
"github.com/docker/docker/pkg/archive"
|
|
|
|
"github.com/docker/docker/pkg/ioutils"
|
2014-07-31 20:29:38 +00:00
|
|
|
)
|
|
|
|
|
2015-07-30 21:01:53 +00: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 17:51:40 +00:00
|
|
|
func (daemon *Daemon) ContainerExport(name string, out io.Writer) error {
|
2015-12-11 17:39:28 +00:00
|
|
|
container, err := daemon.GetContainer(name)
|
2014-12-16 23:06:35 +00:00
|
|
|
if err != nil {
|
2015-03-25 07:44:12 +00:00
|
|
|
return err
|
2014-07-31 20:29:38 +00:00
|
|
|
}
|
2014-12-16 23:06:35 +00:00
|
|
|
|
2015-11-02 23:53:26 +00:00
|
|
|
data, err := daemon.containerExport(container)
|
2014-12-16 23:06:35 +00:00
|
|
|
if err != nil {
|
2015-09-18 17:48:16 +00:00
|
|
|
return derr.ErrorCodeExportFailed.WithArgs(name, err)
|
2014-12-16 23:06:35 +00:00
|
|
|
}
|
|
|
|
defer data.Close()
|
|
|
|
|
|
|
|
// Stream the entire contents of the container (basically a volatile snapshot)
|
2015-04-12 14:04:01 +00:00
|
|
|
if _, err := io.Copy(out, data); err != nil {
|
2015-09-18 17:48:16 +00:00
|
|
|
return derr.ErrorCodeExportFailed.WithArgs(name, err)
|
2014-12-16 23:06:35 +00:00
|
|
|
}
|
2015-03-25 07:44:12 +00:00
|
|
|
return nil
|
2014-07-31 20:29:38 +00:00
|
|
|
}
|
2015-11-02 23:53:26 +00:00
|
|
|
|
2015-11-12 19:55:17 +00:00
|
|
|
func (daemon *Daemon) containerExport(container *container.Container) (archive.Archive, error) {
|
2015-11-02 23:53:26 +00:00
|
|
|
if err := daemon.Mount(container); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
uidMaps, gidMaps := daemon.GetUIDGIDMaps()
|
2015-11-12 19:55:17 +00:00
|
|
|
archive, err := archive.TarWithOptions(container.BaseFS, &archive.TarOptions{
|
2015-11-02 23:53:26 +00:00
|
|
|
Compression: archive.Uncompressed,
|
|
|
|
UIDMaps: uidMaps,
|
|
|
|
GIDMaps: gidMaps,
|
|
|
|
})
|
|
|
|
if err != nil {
|
2015-11-03 01:06:09 +00:00
|
|
|
daemon.Unmount(container)
|
2015-11-02 23:53:26 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
arch := ioutils.NewReadCloserWrapper(archive, func() error {
|
|
|
|
err := archive.Close()
|
2015-11-03 01:06:09 +00:00
|
|
|
daemon.Unmount(container)
|
2015-11-02 23:53:26 +00:00
|
|
|
return err
|
|
|
|
})
|
2015-11-03 17:33:13 +00:00
|
|
|
daemon.LogContainerEvent(container, "export")
|
2015-11-02 23:53:26 +00:00
|
|
|
return arch, err
|
|
|
|
}
|