mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-01 11:15:59 +00:00
17 lines
260 B
Go
17 lines
260 B
Go
package daemon
|
|
|
|
import "io"
|
|
|
|
func (daemon *Daemon) ContainerCopy(name string, res string) (io.ReadCloser, error) {
|
|
container, err := daemon.Get(name)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if res[0] == '/' {
|
|
res = res[1:]
|
|
}
|
|
|
|
return container.Copy(res)
|
|
}
|