Documentation
¶
Index ¶
- Constants
- func MustJsonMarshall(value interface{}) []byte
- type ApiClient
- type Container
- type ContainerAPI
- type ContainerEvent
- type DockerClient
- type DockerContainer
- type DockerContainerEvent
- type DockerEvent
- type DockerEventActor
- type EngineType
- type InfoResponse
- type PodmanClient
- type Port
- type Service
- type VersionResponse
Constants ¶
View Source
const ( Docker = iota Podman DockerSwarm Unknown )
Variables ¶
This section is empty.
Functions ¶
func MustJsonMarshall ¶
func MustJsonMarshall(value interface{}) []byte
Types ¶
type ApiClient ¶
type ApiClient interface { GetStream() (<-chan *ContainerEvent, error) GetContainerFromID(ID string) (*Container, error) }
type ContainerAPI ¶
type ContainerAPI struct { HttpClient *http.Client Url *url.URL APIClient ApiClient // contains filtered or unexported fields }
func NewClient ¶
func NewClient() (*ContainerAPI, error)
func (*ContainerAPI) GetEngineType ¶
func (c *ContainerAPI) GetEngineType() (EngineType, error)
type ContainerEvent ¶
type DockerClient ¶
type DockerClient struct {
// contains filtered or unexported fields
}
func NewDockerClient ¶
func NewDockerClient(apiClient *ContainerAPI) *DockerClient
func (*DockerClient) GetContainerFromID ¶
func (d *DockerClient) GetContainerFromID(ID string) (*Container, error)
func (*DockerClient) GetStream ¶
func (d *DockerClient) GetStream() (<-chan *ContainerEvent, error)
type DockerContainer ¶
type DockerContainerEvent ¶
type DockerContainerEvent struct { Event string Container *DockerContainer }
type DockerEvent ¶
type DockerEvent struct { Type string `json:"Type"` Action string `json:"Action"` Actor DockerEventActor `json:"Actor"` Time int64 `json:"time"` }
type DockerEventActor ¶
type EngineType ¶
type EngineType int
func (EngineType) String ¶
func (s EngineType) String() string
type InfoResponse ¶
type InfoResponse struct { Swarm struct { LocalNodeState string `json:"LocalNodeState"` } `json:"Swarm"` }
type PodmanClient ¶
type PodmanClient struct {
// contains filtered or unexported fields
}
func NewPodmanClient ¶
func NewPodmanClient(apiClient *ContainerAPI) *PodmanClient
func (PodmanClient) GetContainerFromID ¶
func (p PodmanClient) GetContainerFromID(ID string) (*Container, error)
func (PodmanClient) GetStream ¶
func (p PodmanClient) GetStream() (<-chan *ContainerEvent, error)
type VersionResponse ¶
type VersionResponse struct { Components []struct { Name string `json:"Name"` } `json:"Components"` }
Click to show internal directories.
Click to hide internal directories.