api.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  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 api
  14. import (
  15. "context"
  16. "fmt"
  17. "strings"
  18. "time"
  19. "github.com/compose-spec/compose-go/types"
  20. "github.com/docker/compose/v2/pkg/utils"
  21. )
  22. // Service manages a compose project
  23. type Service interface {
  24. // Build executes the equivalent to a `compose build`
  25. Build(ctx context.Context, project *types.Project, options BuildOptions) error
  26. // Push executes the equivalent to a `compose push`
  27. Push(ctx context.Context, project *types.Project, options PushOptions) error
  28. // Pull executes the equivalent of a `compose pull`
  29. Pull(ctx context.Context, project *types.Project, options PullOptions) error
  30. // Create executes the equivalent to a `compose create`
  31. Create(ctx context.Context, project *types.Project, options CreateOptions) error
  32. // Start executes the equivalent to a `compose start`
  33. Start(ctx context.Context, projectName string, options StartOptions) error
  34. // Restart restarts containers
  35. Restart(ctx context.Context, projectName string, options RestartOptions) error
  36. // Stop executes the equivalent to a `compose stop`
  37. Stop(ctx context.Context, projectName string, options StopOptions) error
  38. // Up executes the equivalent to a `compose up`
  39. Up(ctx context.Context, project *types.Project, options UpOptions) error
  40. // Down executes the equivalent to a `compose down`
  41. Down(ctx context.Context, projectName string, options DownOptions) error
  42. // Logs executes the equivalent to a `compose logs`
  43. Logs(ctx context.Context, projectName string, consumer LogConsumer, options LogOptions) error
  44. // Ps executes the equivalent to a `compose ps`
  45. Ps(ctx context.Context, projectName string, options PsOptions) ([]ContainerSummary, error)
  46. // List executes the equivalent to a `docker stack ls`
  47. List(ctx context.Context, options ListOptions) ([]Stack, error)
  48. // Convert translate compose model into backend's native format
  49. Config(ctx context.Context, project *types.Project, options ConfigOptions) ([]byte, error)
  50. // Kill executes the equivalent to a `compose kill`
  51. Kill(ctx context.Context, projectName string, options KillOptions) error
  52. // RunOneOffContainer creates a service oneoff container and starts its dependencies
  53. RunOneOffContainer(ctx context.Context, project *types.Project, opts RunOptions) (int, error)
  54. // Remove executes the equivalent to a `compose rm`
  55. Remove(ctx context.Context, projectName string, options RemoveOptions) error
  56. // Exec executes a command in a running service container
  57. Exec(ctx context.Context, projectName string, options RunOptions) (int, error)
  58. // Copy copies a file/folder between a service container and the local filesystem
  59. Copy(ctx context.Context, projectName string, options CopyOptions) error
  60. // Pause executes the equivalent to a `compose pause`
  61. Pause(ctx context.Context, projectName string, options PauseOptions) error
  62. // UnPause executes the equivalent to a `compose unpause`
  63. UnPause(ctx context.Context, projectName string, options PauseOptions) error
  64. // Top executes the equivalent to a `compose top`
  65. Top(ctx context.Context, projectName string, services []string) ([]ContainerProcSummary, error)
  66. // Events executes the equivalent to a `compose events`
  67. Events(ctx context.Context, projectName string, options EventsOptions) error
  68. // Port executes the equivalent to a `compose port`
  69. Port(ctx context.Context, projectName string, service string, port uint16, options PortOptions) (string, int, error)
  70. // Publish executes the equivalent to a `compose publish`
  71. Publish(ctx context.Context, project *types.Project, repository string) error
  72. // Images executes the equivalent of a `compose images`
  73. Images(ctx context.Context, projectName string, options ImagesOptions) ([]ImageSummary, error)
  74. // MaxConcurrency defines upper limit for concurrent operations against engine API
  75. MaxConcurrency(parallel int)
  76. // DryRunMode defines if dry run applies to the command
  77. DryRunMode(ctx context.Context, dryRun bool) (context.Context, error)
  78. // Watch services' development context and sync/notify/rebuild/restart on changes
  79. Watch(ctx context.Context, project *types.Project, services []string, options WatchOptions) error
  80. // Viz generates a graphviz graph of the project services
  81. Viz(ctx context.Context, project *types.Project, options VizOptions) (string, error)
  82. // Wait blocks until at least one of the services' container exits
  83. Wait(ctx context.Context, projectName string, options WaitOptions) (int64, error)
  84. }
  85. type WaitOptions struct {
  86. // Services passed in the command line to be waited
  87. Services []string
  88. // Executes a down when a container exits
  89. DownProjectOnContainerExit bool
  90. }
  91. type VizOptions struct {
  92. // IncludeNetworks if true, network names a container is attached to should appear in the graph node
  93. IncludeNetworks bool
  94. // IncludePorts if true, ports a container exposes should appear in the graph node
  95. IncludePorts bool
  96. // IncludeImageName if true, name of the image used to create a container should appear in the graph node
  97. IncludeImageName bool
  98. // Indentation string to be used to indent graphviz code, e.g. "\t", " "
  99. Indentation string
  100. }
  101. // WatchOptions group options of the Watch API
  102. type WatchOptions struct {
  103. }
  104. // BuildOptions group options of the Build API
  105. type BuildOptions struct {
  106. // Pull always attempt to pull a newer version of the image
  107. Pull bool
  108. // Push pushes service images
  109. Push bool
  110. // Progress set type of progress output ("auto", "plain", "tty")
  111. Progress string
  112. // Args set build-time args
  113. Args types.MappingWithEquals
  114. // NoCache disables cache use
  115. NoCache bool
  116. // Quiet make the build process not output to the console
  117. Quiet bool
  118. // Services passed in the command line to be built
  119. Services []string
  120. // Ssh authentications passed in the command line
  121. SSHs []types.SSHKey
  122. // Memory limit for the build container
  123. Memory int64
  124. // Builder name passed in the command line
  125. Builder string
  126. }
  127. // Apply mutates project according to build options
  128. func (o BuildOptions) Apply(project *types.Project) error {
  129. platform := project.Environment["DOCKER_DEFAULT_PLATFORM"]
  130. for i, service := range project.Services {
  131. if service.Image == "" && service.Build == nil {
  132. return fmt.Errorf("invalid service %q. Must specify either image or build", service.Name)
  133. }
  134. if service.Build == nil {
  135. continue
  136. }
  137. service.Image = GetImageNameOrDefault(service, project.Name)
  138. if platform != "" {
  139. if len(service.Build.Platforms) > 0 && !utils.StringContains(service.Build.Platforms, platform) {
  140. return fmt.Errorf("service %q build.platforms does not support value set by DOCKER_DEFAULT_PLATFORM: %s", service.Name, platform)
  141. }
  142. service.Platform = platform
  143. }
  144. if service.Platform != "" {
  145. if len(service.Build.Platforms) > 0 && !utils.StringContains(service.Build.Platforms, service.Platform) {
  146. return fmt.Errorf("service %q build configuration does not support platform: %s", service.Name, service.Platform)
  147. }
  148. }
  149. service.Build.Pull = service.Build.Pull || o.Pull
  150. service.Build.NoCache = service.Build.NoCache || o.NoCache
  151. project.Services[i] = service
  152. }
  153. return nil
  154. }
  155. // CreateOptions group options of the Create API
  156. type CreateOptions struct {
  157. // Services defines the services user interacts with
  158. Services []string
  159. // Remove legacy containers for services that are not defined in the project
  160. RemoveOrphans bool
  161. // Ignore legacy containers for services that are not defined in the project
  162. IgnoreOrphans bool
  163. // Recreate define the strategy to apply on existing containers
  164. Recreate string
  165. // RecreateDependencies define the strategy to apply on dependencies services
  166. RecreateDependencies string
  167. // Inherit reuse anonymous volumes from previous container
  168. Inherit bool
  169. // Timeout set delay to wait for container to gracelfuly stop before sending SIGKILL
  170. Timeout *time.Duration
  171. // QuietPull makes the pulling process quiet
  172. QuietPull bool
  173. }
  174. // StartOptions group options of the Start API
  175. type StartOptions struct {
  176. // Project is the compose project used to define this app. Might be nil if user ran command just with project name
  177. Project *types.Project
  178. // Attach to container and forward logs if not nil
  179. Attach LogConsumer
  180. // AttachTo set the services to attach to
  181. AttachTo []string
  182. // CascadeStop stops the application when a container stops
  183. CascadeStop bool
  184. // ExitCodeFrom return exit code from specified service
  185. ExitCodeFrom string
  186. // Wait won't return until containers reached the running|healthy state
  187. Wait bool
  188. WaitTimeout time.Duration
  189. // Services passed in the command line to be started
  190. Services []string
  191. }
  192. // RestartOptions group options of the Restart API
  193. type RestartOptions struct {
  194. // Project is the compose project used to define this app. Might be nil if user ran command just with project name
  195. Project *types.Project
  196. // Timeout override container restart timeout
  197. Timeout *time.Duration
  198. // Services passed in the command line to be restarted
  199. Services []string
  200. }
  201. // StopOptions group options of the Stop API
  202. type StopOptions struct {
  203. // Project is the compose project used to define this app. Might be nil if user ran command just with project name
  204. Project *types.Project
  205. // Timeout override container stop timeout
  206. Timeout *time.Duration
  207. // Services passed in the command line to be stopped
  208. Services []string
  209. }
  210. // UpOptions group options of the Up API
  211. type UpOptions struct {
  212. Create CreateOptions
  213. Start StartOptions
  214. }
  215. // DownOptions group options of the Down API
  216. type DownOptions struct {
  217. // RemoveOrphans will cleanup containers that are not declared on the compose model but own the same labels
  218. RemoveOrphans bool
  219. // Project is the compose project used to define this app. Might be nil if user ran `down` just with project name
  220. Project *types.Project
  221. // Timeout override container stop timeout
  222. Timeout *time.Duration
  223. // Images remove image used by services. 'all': Remove all images. 'local': Remove only images that don't have a tag
  224. Images string
  225. // Volumes remove volumes, both declared in the `volumes` section and anonymous ones
  226. Volumes bool
  227. // Services passed in the command line to be stopped
  228. Services []string
  229. }
  230. // ConfigOptions group options of the Config API
  231. type ConfigOptions struct {
  232. // Format define the output format used to dump converted application model (json|yaml)
  233. Format string
  234. // Output defines the path to save the application model
  235. Output string
  236. // Resolve image reference to digests
  237. ResolveImageDigests bool
  238. }
  239. // PushOptions group options of the Push API
  240. type PushOptions struct {
  241. Quiet bool
  242. Repository string
  243. IgnoreFailures bool
  244. }
  245. // PullOptions group options of the Pull API
  246. type PullOptions struct {
  247. Quiet bool
  248. IgnoreFailures bool
  249. IgnoreBuildable bool
  250. }
  251. // ImagesOptions group options of the Images API
  252. type ImagesOptions struct {
  253. Services []string
  254. }
  255. // KillOptions group options of the Kill API
  256. type KillOptions struct {
  257. // RemoveOrphans will cleanup containers that are not declared on the compose model but own the same labels
  258. RemoveOrphans bool
  259. // Project is the compose project used to define this app. Might be nil if user ran command just with project name
  260. Project *types.Project
  261. // Services passed in the command line to be killed
  262. Services []string
  263. // Signal to send to containers
  264. Signal string
  265. }
  266. // RemoveOptions group options of the Remove API
  267. type RemoveOptions struct {
  268. // Project is the compose project used to define this app. Might be nil if user ran command just with project name
  269. Project *types.Project
  270. // Stop option passed in the command line
  271. Stop bool
  272. // Volumes remove anonymous volumes
  273. Volumes bool
  274. // Force don't ask to confirm removal
  275. Force bool
  276. // Services passed in the command line to be removed
  277. Services []string
  278. }
  279. // RunOptions group options of the Run API
  280. type RunOptions struct {
  281. // Project is the compose project used to define this app. Might be nil if user ran command just with project name
  282. Project *types.Project
  283. Name string
  284. Service string
  285. Command []string
  286. Entrypoint []string
  287. Detach bool
  288. AutoRemove bool
  289. Tty bool
  290. Interactive bool
  291. WorkingDir string
  292. User string
  293. Environment []string
  294. CapAdd []string
  295. CapDrop []string
  296. Labels types.Labels
  297. Privileged bool
  298. UseNetworkAliases bool
  299. NoDeps bool
  300. // QuietPull makes the pulling process quiet
  301. QuietPull bool
  302. // used by exec
  303. Index int
  304. }
  305. // EventsOptions group options of the Events API
  306. type EventsOptions struct {
  307. Services []string
  308. Consumer func(event Event) error
  309. }
  310. // Event is a container runtime event served by Events API
  311. type Event struct {
  312. Timestamp time.Time
  313. Service string
  314. Container string
  315. Status string
  316. Attributes map[string]string
  317. }
  318. // PortOptions group options of the Port API
  319. type PortOptions struct {
  320. Protocol string
  321. Index int
  322. }
  323. func (e Event) String() string {
  324. t := e.Timestamp.Format("2006-01-02 15:04:05.000000")
  325. var attr []string
  326. for k, v := range e.Attributes {
  327. attr = append(attr, fmt.Sprintf("%s=%s", k, v))
  328. }
  329. return fmt.Sprintf("%s container %s %s (%s)\n", t, e.Status, e.Container, strings.Join(attr, ", "))
  330. }
  331. // ListOptions group options of the ls API
  332. type ListOptions struct {
  333. All bool
  334. }
  335. // PsOptions group options of the Ps API
  336. type PsOptions struct {
  337. Project *types.Project
  338. All bool
  339. Services []string
  340. }
  341. // CopyOptions group options of the cp API
  342. type CopyOptions struct {
  343. Source string
  344. Destination string
  345. All bool
  346. Index int
  347. FollowLink bool
  348. CopyUIDGID bool
  349. }
  350. // PortPublisher hold status about published port
  351. type PortPublisher struct {
  352. URL string
  353. TargetPort int
  354. PublishedPort int
  355. Protocol string
  356. }
  357. // ContainerSummary hold high-level description of a container
  358. type ContainerSummary struct {
  359. ID string
  360. Name string
  361. Image any
  362. Command string
  363. Project string
  364. Service string
  365. Created int64
  366. State string
  367. Status string
  368. Health string
  369. ExitCode int
  370. Publishers PortPublishers
  371. }
  372. // PortPublishers is a slice of PortPublisher
  373. type PortPublishers []PortPublisher
  374. // Len implements sort.Interface
  375. func (p PortPublishers) Len() int {
  376. return len(p)
  377. }
  378. // Less implements sort.Interface
  379. func (p PortPublishers) Less(i, j int) bool {
  380. left := p[i]
  381. right := p[j]
  382. if left.URL != right.URL {
  383. return left.URL < right.URL
  384. }
  385. if left.TargetPort != right.TargetPort {
  386. return left.TargetPort < right.TargetPort
  387. }
  388. if left.PublishedPort != right.PublishedPort {
  389. return left.PublishedPort < right.PublishedPort
  390. }
  391. return left.Protocol < right.Protocol
  392. }
  393. // Swap implements sort.Interface
  394. func (p PortPublishers) Swap(i, j int) {
  395. p[i], p[j] = p[j], p[i]
  396. }
  397. // ContainerProcSummary holds container processes top data
  398. type ContainerProcSummary struct {
  399. ID string
  400. Name string
  401. Processes [][]string
  402. Titles []string
  403. }
  404. // ImageSummary holds container image description
  405. type ImageSummary struct {
  406. ID string
  407. ContainerName string
  408. Repository string
  409. Tag string
  410. Size int64
  411. }
  412. // ServiceStatus hold status about a service
  413. type ServiceStatus struct {
  414. ID string
  415. Name string
  416. Replicas int
  417. Desired int
  418. Ports []string
  419. Publishers []PortPublisher
  420. }
  421. // LogOptions defines optional parameters for the `Log` API
  422. type LogOptions struct {
  423. Project *types.Project
  424. Services []string
  425. Tail string
  426. Since string
  427. Until string
  428. Follow bool
  429. Timestamps bool
  430. }
  431. // PauseOptions group options of the Pause API
  432. type PauseOptions struct {
  433. // Services passed in the command line to be started
  434. Services []string
  435. // Project is the compose project used to define this app. Might be nil if user ran command just with project name
  436. Project *types.Project
  437. }
  438. const (
  439. // STARTING indicates that stack is being deployed
  440. STARTING string = "Starting"
  441. // RUNNING indicates that stack is deployed and services are running
  442. RUNNING string = "Running"
  443. // UPDATING indicates that some stack resources are being recreated
  444. UPDATING string = "Updating"
  445. // REMOVING indicates that stack is being deleted
  446. REMOVING string = "Removing"
  447. // UNKNOWN indicates unknown stack state
  448. UNKNOWN string = "Unknown"
  449. // FAILED indicates that stack deployment failed
  450. FAILED string = "Failed"
  451. )
  452. const (
  453. // RecreateDiverged to recreate services which configuration diverges from compose model
  454. RecreateDiverged = "diverged"
  455. // RecreateForce to force service container being recreated
  456. RecreateForce = "force"
  457. // RecreateNever to never recreate existing service containers
  458. RecreateNever = "never"
  459. )
  460. // Stack holds the name and state of a compose application/stack
  461. type Stack struct {
  462. ID string
  463. Name string
  464. Status string
  465. ConfigFiles string
  466. Reason string
  467. }
  468. // LogConsumer is a callback to process log messages from services
  469. type LogConsumer interface {
  470. Log(containerName, message string)
  471. Err(containerName, message string)
  472. Status(container, msg string)
  473. Register(container string)
  474. }
  475. // ContainerEventListener is a callback to process ContainerEvent from services
  476. type ContainerEventListener func(event ContainerEvent)
  477. // ContainerEvent notify an event has been collected on source container implementing Service
  478. type ContainerEvent struct {
  479. Type int
  480. // Container is the name of the container _without the project prefix_.
  481. //
  482. // This is only suitable for display purposes within Compose, as it's
  483. // not guaranteed to be unique across services.
  484. Container string
  485. ID string
  486. Service string
  487. Line string
  488. // ContainerEventExit only
  489. ExitCode int
  490. Restarting bool
  491. }
  492. const (
  493. // ContainerEventLog is a ContainerEvent of type log on stdout. Line is set
  494. ContainerEventLog = iota
  495. // ContainerEventErr is a ContainerEvent of type log on stderr. Line is set
  496. ContainerEventErr
  497. // ContainerEventAttach is a ContainerEvent of type attach. First event sent about a container
  498. ContainerEventAttach
  499. // ContainerEventStopped is a ContainerEvent of type stopped.
  500. ContainerEventStopped
  501. // ContainerEventRecreated let consumer know container stopped but his being replaced
  502. ContainerEventRecreated
  503. // ContainerEventExit is a ContainerEvent of type exit. ExitCode is set
  504. ContainerEventExit
  505. // UserCancel user cancelled compose up, we are stopping containers
  506. UserCancel
  507. )
  508. // Separator is used for naming components
  509. var Separator = "-"
  510. // GetImageNameOrDefault computes the default image name for a service, used to tag built images
  511. func GetImageNameOrDefault(service types.ServiceConfig, projectName string) string {
  512. imageName := service.Image
  513. if imageName == "" {
  514. imageName = projectName + Separator + service.Name
  515. }
  516. return imageName
  517. }