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