Versions in this module Expand all Collapse all v1 v1.1.0 Aug 24, 2025 Changes in this version + type ContainerInfo struct + ID string + Name string + Ports []PortMapping + type PortMapping struct + Container string + Host string + Protocol string + type RunOptions struct + Detach bool + Environment []string + Image string + Interactive bool + Name string + Ports []string + Volumes []string + type Runtime struct + func New() *Runtime + func (r *Runtime) List() ([]ContainerInfo, error) + func (r *Runtime) Run(options *RunOptions) (*ContainerInfo, error) + func (r *Runtime) Stop(containerID string) error + func (r *Runtime) StreamLogs(containerID string) error + func (r *Runtime) ValidateImage(imageName string) error