types_deprecated.go 964 B

1234567891011121314151617181920212223242526272829303132333435
  1. package types
  2. import (
  3. "github.com/docker/docker/api/types/image"
  4. )
  5. // ImageImportOptions holds information to import images from the client host.
  6. //
  7. // Deprecated: use [image.ImportOptions].
  8. type ImageImportOptions = image.ImportOptions
  9. // ImageCreateOptions holds information to create images.
  10. //
  11. // Deprecated: use [image.CreateOptions].
  12. type ImageCreateOptions = image.CreateOptions
  13. // ImagePullOptions holds information to pull images.
  14. //
  15. // Deprecated: use [image.PullOptions].
  16. type ImagePullOptions = image.PullOptions
  17. // ImagePushOptions holds information to push images.
  18. //
  19. // Deprecated: use [image.PushOptions].
  20. type ImagePushOptions = image.PushOptions
  21. // ImageListOptions holds parameters to list images with.
  22. //
  23. // Deprecated: use [image.ListOptions].
  24. type ImageListOptions = image.ListOptions
  25. // ImageRemoveOptions holds parameters to remove images.
  26. //
  27. // Deprecated: use [image.RemoveOptions].
  28. type ImageRemoveOptions = image.RemoveOptions