Skip to main content

outrig_cli/image_setup/
mod.rs

1//! Scaffolding for new image-configs: `outrig image add`
2//! generates a Dockerfile plus a `[images.<name>]` block by rendering
3//! a curated set of base-image templates.
4
5pub mod add;
6pub mod build;
7pub mod init;
8pub mod inspect;
9pub mod render;
10
11pub use add::DOC_SYNC_FIELDS;