Module Testcontainers.NetworkSource

Docker network management

Sourcetype t = {
  1. id : string;
  2. name : string;
}
Sourceval id : t -> string
Sourceval name : t -> string
Sourceval create : ?driver:string -> string -> t Lwt.t
Sourceval remove : t -> unit Lwt.t
Sourceval with_network : ?driver:string -> string -> (t -> 'a Lwt.t) -> 'a Lwt.t