|
@@ -29,29 +29,6 @@ import (
|
|
|
"github.com/docker/docker/utils"
|
|
|
)
|
|
|
|
|
|
-func (srv *Server) ContainerExport(job *engine.Job) engine.Status {
|
|
|
- if len(job.Args) != 1 {
|
|
|
- return job.Errorf("Usage: %s container_id", job.Name)
|
|
|
- }
|
|
|
- name := job.Args[0]
|
|
|
- if container := srv.daemon.Get(name); container != nil {
|
|
|
- data, err := container.Export()
|
|
|
- if err != nil {
|
|
|
- return job.Errorf("%s: %s", name, err)
|
|
|
- }
|
|
|
- defer data.Close()
|
|
|
-
|
|
|
- // Stream the entire contents of the container (basically a volatile snapshot)
|
|
|
- if _, err := io.Copy(job.Stdout, data); err != nil {
|
|
|
- return job.Errorf("%s: %s", name, err)
|
|
|
- }
|
|
|
- // FIXME: factor job-specific LogEvent to engine.Job.Run()
|
|
|
- srv.LogEvent("export", container.ID, srv.daemon.Repositories().ImageName(container.Image))
|
|
|
- return engine.StatusOK
|
|
|
- }
|
|
|
- return job.Errorf("No such container: %s", name)
|
|
|
-}
|
|
|
-
|
|
|
func (srv *Server) ContainerTop(job *engine.Job) engine.Status {
|
|
|
if len(job.Args) != 1 && len(job.Args) != 2 {
|
|
|
return job.Errorf("Not enough arguments. Usage: %s CONTAINER [PS_ARGS]\n", job.Name)
|