api.go 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /*
  2. Copyright 2020 Docker Compose CLI authors
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package containers
  14. import (
  15. "context"
  16. "io"
  17. "github.com/docker/compose-cli/formatter"
  18. )
  19. const (
  20. // RestartPolicyAny Always restarts
  21. RestartPolicyAny = "any"
  22. // RestartPolicyNone Never restarts
  23. RestartPolicyNone = "none"
  24. // RestartPolicyOnFailure Restarts only on failure
  25. RestartPolicyOnFailure = "on-failure"
  26. )
  27. // RestartPolicyList all available restart policy values
  28. var RestartPolicyList = []string{RestartPolicyNone, RestartPolicyAny, RestartPolicyOnFailure}
  29. // Container represents a created container
  30. type Container struct {
  31. ID string
  32. Status string
  33. Image string
  34. Command string
  35. CPUTime uint64
  36. MemoryUsage uint64
  37. PidsCurrent uint64
  38. PidsLimit uint64
  39. Config *RuntimeConfig `json:",omitempty"`
  40. HostConfig *HostConfig `json:",omitempty"`
  41. Ports []Port `json:",omitempty"`
  42. Platform string
  43. }
  44. // RuntimeConfig config of a created container
  45. type RuntimeConfig struct {
  46. Labels []string `json:",omitempty"`
  47. Env map[string]string `json:",omitempty"`
  48. // FQDN is the fqdn to use
  49. FQDN string `json:"fqdn,omitempty"`
  50. }
  51. // HostConfig config of the container host
  52. type HostConfig struct {
  53. RestartPolicy string
  54. CPUReservation float64
  55. CPULimit float64
  56. MemoryReservation uint64
  57. MemoryLimit uint64
  58. }
  59. // Port represents a published port of a container
  60. type Port struct {
  61. // HostPort is the port number on the host
  62. HostPort uint32
  63. // ContainerPort is the port number inside the container
  64. ContainerPort uint32
  65. // Protocol is the protocol of the port mapping
  66. Protocol string
  67. // HostIP is the host ip to use
  68. HostIP string
  69. }
  70. // ContainerConfig contains the configuration data about a container
  71. type ContainerConfig struct {
  72. // ID uniquely identifies the container
  73. ID string
  74. // Image specifies the iamge reference used for a container
  75. Image string
  76. // Command are the arguments passed to the container's entrypoint
  77. Command []string
  78. // Ports provide a list of published ports
  79. Ports []Port
  80. // Labels set labels to the container
  81. Labels map[string]string
  82. // Volumes to be mounted
  83. Volumes []string
  84. // Memlimit
  85. MemLimit formatter.MemBytes
  86. // CPUlimit
  87. CPULimit float64
  88. // Environment variables
  89. Environment []string
  90. // Restart policy condition
  91. RestartPolicyCondition string
  92. // DomainName Container NIS domain name
  93. DomainName string
  94. }
  95. // ExecRequest contaiens configuration about an exec request
  96. type ExecRequest struct {
  97. Stdin io.Reader
  98. Stdout io.Writer
  99. Stderr io.Writer
  100. Command string
  101. Interactive bool
  102. Tty bool
  103. }
  104. // LogsRequest contains configuration about a log request
  105. type LogsRequest struct {
  106. Follow bool
  107. Tail string
  108. Width int
  109. Writer io.Writer
  110. }
  111. // DeleteRequest contains configuration about a delete request
  112. type DeleteRequest struct {
  113. Force bool
  114. }
  115. // Service interacts with the underlying container backend
  116. type Service interface {
  117. // List returns all the containers
  118. List(ctx context.Context, all bool) ([]Container, error)
  119. // Start starts a stopped container
  120. Start(ctx context.Context, containerID string) error
  121. // Stop stops the running container
  122. Stop(ctx context.Context, containerID string, timeout *uint32) error
  123. // Kill stops the running container
  124. Kill(ctx context.Context, containerID string, signal string) error
  125. // Run creates and starts a container
  126. Run(ctx context.Context, config ContainerConfig) error
  127. // Exec executes a command inside a running container
  128. Exec(ctx context.Context, containerName string, request ExecRequest) error
  129. // Logs returns all the logs of a container
  130. Logs(ctx context.Context, containerName string, request LogsRequest) error
  131. // Delete removes containers
  132. Delete(ctx context.Context, containerID string, request DeleteRequest) error
  133. // Inspect get a specific container
  134. Inspect(ctx context.Context, id string) (Container, error)
  135. }