mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-08 18:05:41 +00: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>
15 lines
173 B
Go
15 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
|
|
}
|