docker-wrapper 0.11.1

A Docker CLI wrapper for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Web server template collection
//!
//! This module provides templates for web servers and reverse proxies:
//! - Nginx for static content and reverse proxy
//! - Apache HTTP Server (future)
//! - Caddy Server (future)
//! - Traefik (future)

#[cfg(feature = "template-nginx")]
pub mod nginx;
#[cfg(feature = "template-nginx")]
pub use nginx::NginxTemplate;