package docker_hub

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type fetch_errors = [
  1. | `Api_error of Http_lwt_client.response * string option
  2. | `Malformed_json of string
  3. | `Msg of string
]
type digest_errors = [
  1. | `Malformed_json of string
  2. | `No_corresponding_arch_found
  3. | `No_corresponding_os_found
]
type t
val fetch_manifests : repo:string -> tag:string option -> (t, [> fetch_errors ]) Stdlib.result Lwt.t
val digest : os:string -> arch:string -> t -> (string, [> digest_errors ]) Stdlib.result
val pp : Stdlib.Format.formatter -> t -> unit