1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#![warn(missing_docs)]
#![forbid(unsafe_code)]
#![warn(clippy::perf)]
#![warn(clippy::pedantic)]
#![allow(clippy::module_name_repetitions)]
#![doc = include_str!("../README.md")]

mod error;
pub use self::error::*;

mod container;
pub use self::container::*;

mod image;
pub use self::image::*;

mod port;
pub use self::port::*;

mod id;
pub(crate) use self::id::Id;

pub(crate) mod cmd;

pub(crate) mod version;

/// Runners like docker, podman, ...
pub mod runner;

/// Provided images like postgres, redis, ...
pub mod images;

/// Provide support of compose
pub mod compose;