mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
3f6127b173
Signed-off-by: John Howard <jhoward@microsoft.com>
10 lines
267 B
Go
10 lines
267 B
Go
// +build !linux
|
|
|
|
package daemon
|
|
|
|
import "github.com/docker/docker/container"
|
|
|
|
// sqliteMigration performs the link graph DB migration. No-op on platforms other than Linux
|
|
func (daemon *Daemon) sqliteMigration(_ map[string]*container.Container) error {
|
|
return nil
|
|
}
|