Files
podman/pkg/adapter/reset_remote.go
Daniel J Walsh 79bf5010ed Add podman system reset command
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>
2019-11-29 05:34:52 -05:00

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)
}