mirror of
https://github.com/containers/podman.git
synced 2025-05-17 23:26:08 +08:00

This command will destroy all data created via podman. It will remove containers, images, volumes, pods. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
16 lines
173 B
Go
16 lines
173 B
Go
// +build !linux
|
|
|
|
package libpod
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func (r *Runtime) migrate(ctx context.Context) error {
|
|
return nil
|
|
}
|
|
|
|
func stopPauseProcess() error {
|
|
return nil
|
|
}
|