Skip to content

Commit

Permalink
feature: remote volume driver
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Li <[email protected]>
  • Loading branch information
shaloulcy committed May 15, 2018
1 parent bd54a92 commit 4b21275
Show file tree
Hide file tree
Showing 13 changed files with 995 additions and 301 deletions.
1 change: 1 addition & 0 deletions daemon/mgr/volume.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ func (vm *VolumeManager) Remove(ctx context.Context, name string) error {
if strings.Contains(err.Error(), "not found") {
return errors.Wrap(errtypes.ErrNotfound, err.Error())
}
return err
}

return nil
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugins.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package plugins

var manager = &pluginManager{
plugins: make(map[string]*Plugin),
pluginSockPaths: []string{"/run/pouch/plugins"},
pluginSockPaths: []string{"/run/pouch/plugins", "/run/docker/plugins"},
pluginSpecPaths: []string{"/etc/pouch/plugins", "/var/lib/pouch/plugins"},
}

Expand Down
Loading

0 comments on commit 4b21275

Please sign in to comment.