mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
18 lines
365 B
Go
18 lines
365 B
Go
|
package daemon
|
||
|
|
||
|
import (
|
||
|
"github.com/docker/swarmkit/agent/exec"
|
||
|
)
|
||
|
|
||
|
// SetContainerDependencyStore sets the dependency store backend for the container
|
||
|
func (daemon *Daemon) SetContainerDependencyStore(name string, store exec.DependencyGetter) error {
|
||
|
c, err := daemon.GetContainer(name)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
c.DependencyStore = store
|
||
|
|
||
|
return nil
|
||
|
}
|