mirror of
https://github.com/containers/podman.git
synced 2025-07-15 03:02:52 +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>
13 lines
250 B
Go
13 lines
250 B
Go
// +build remoteclient
|
|
|
|
package adapter
|
|
|
|
import (
|
|
"github.com/containers/libpod/cmd/podman/varlink"
|
|
)
|
|
|
|
// Info returns information for the host system and its components
|
|
func (r RemoteRuntime) Reset() error {
|
|
return iopodman.Reset().Call(r.Conn)
|
|
}
|