mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
c7cfdb65aa
Signed-off-by: Antonio Murdaca <me@runcom.ninja>
16 lines
260 B
Go
16 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)
|
|
}
|