api.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. Copyright 2020 Docker, Inc.
  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 compose
  14. import (
  15. "context"
  16. "io"
  17. "github.com/compose-spec/compose-go/cli"
  18. )
  19. // Service manages a compose project
  20. type Service interface {
  21. // Up executes the equivalent to a `compose up`
  22. Up(ctx context.Context, opts *cli.ProjectOptions) error
  23. // Down executes the equivalent to a `compose down`
  24. Down(ctx context.Context, opts *cli.ProjectOptions) error
  25. // Logs executes the equivalent to a `compose logs`
  26. Logs(ctx context.Context, opts *cli.ProjectOptions, w io.Writer) error
  27. // Ps executes the equivalent to a `compose ps`
  28. Ps(ctx context.Context, opts *cli.ProjectOptions) ([]ServiceStatus, error)
  29. }
  30. type LoadBalancer struct {
  31. URL string
  32. TargetPort int
  33. PublishedPort int
  34. Protocol string
  35. }
  36. type ServiceStatus struct {
  37. ID string
  38. Name string
  39. Replicas int
  40. Desired int
  41. Ports []string
  42. LoadBalancers []LoadBalancer
  43. }