podup 0.5.4

Translate and run docker-compose files on rootless Podman
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! `podup` — docker-compose → Podman translator library.
//!
//! Provides parsing, variable substitution, topological ordering, and an
//! async engine that drives container lifecycle via Podman's Docker-compatible
//! REST API (bollard).

pub mod compose;
pub(crate) mod engine;
pub mod env_file;
pub(crate) mod error;
pub mod podman;
pub mod ports;
pub mod size;
pub mod substitute;

pub use compose::{parse_file, parse_str, parse_str_raw, resolve_order};
pub use engine::{Engine, RunOptions};
pub use error::{ComposeError, Result};