Signed-off-by: John Howard <jhoward@microsoft.com> Upstream-commit: 3f6127b173949cb36557601a56bc15ae2c45a698 Component: engine
11 lines
267 B
Go
11 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
|
|
}
|