Versions in this module Expand all Collapse all v1 v1.0.0 Aug 24, 2025 Changes in this version + func AdvancedCleanup() (string, error) + func BasicCleanup() (string, error) + func GetContainerLogs(idOrName string) (string, error) + func InspectContainer(idOrName string) (string, error) + func InspectNetwork(idOrName string) (string, error) + func RemoveContainer(idOrName string) error + func RemoveImage(idOrName string) error + func RemoveVolume(name string) error + func StartContainer(idOrName string) error + func StopContainer(idOrName string) error + func TotalCleanup() (string, error) + type Container struct + Command string + Created string + ID string + Image string + Names string + Ports string + Status string + func ListContainers() ([]Container, error) + type Image struct + Created string + ID string + Repository string + Size string + Tag string + func ListImages() ([]Image, error) + type Network struct + Driver string + ID string + Name string + Scope string + func ListNetworks() ([]Network, error) + type SystemInfo struct + Containers int + DiskUsage string + Images int + Networks int + Paused int + Running int + Stopped int + Volumes int + func GetSystemInfo() (SystemInfo, error) + type Volume struct + Driver string + Mountpoint string + Name string + Scope string + func ListVolumes() ([]Volume, error)