docker-wrapper 0.11.1

A Docker CLI wrapper for Rust
Documentation
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
//! Docker template system for common container configurations
//!
//! This module provides pre-configured templates for common Docker setups,
//! making it easy to spin up development environments with best practices.

#![allow(clippy::doc_markdown)]
#![allow(clippy::must_use_candidate)]
#![allow(clippy::return_self_not_must_use)]
#![allow(clippy::needless_borrows_for_generic_args)]
#![allow(clippy::redundant_closure_for_method_calls)]
#![allow(clippy::inefficient_to_string)]

use crate::{DockerCommand, RunCommand};
use async_trait::async_trait;
use std::collections::HashMap;
use tracing::{debug, error, info, trace, warn};

// Redis templates
#[cfg(any(
    feature = "template-redis",
    feature = "template-redis-cluster",
    feature = "template-redis-enterprise"
))]
pub mod redis;

// Database templates
#[cfg(any(
    feature = "template-postgres",
    feature = "template-mysql",
    feature = "template-mongodb"
))]
pub mod database;

// Web server templates
#[cfg(feature = "template-nginx")]
pub mod web;

/// Result type for template operations
pub type Result<T> = std::result::Result<T, TemplateError>;

/// Template-specific errors
#[derive(Debug, thiserror::Error)]
pub enum TemplateError {
    /// Docker command execution failed
    #[error("Docker command failed: {0}")]
    DockerError(#[from] crate::Error),

    /// Invalid template configuration provided
    #[error("Invalid configuration: {0}")]
    InvalidConfig(String),

    /// Attempted to start a template that is already running
    #[error("Template already running: {0}")]
    AlreadyRunning(String),

    /// Attempted to operate on a template that is not running
    #[error("Template not running: {0}")]
    NotRunning(String),

    /// Operation timed out waiting for a condition
    #[error("Timeout: {0}")]
    Timeout(String),
}

/// Configuration for a Docker template
#[derive(Debug, Clone)]
pub struct TemplateConfig {
    /// Container name
    pub name: String,

    /// Image to use
    pub image: String,

    /// Image tag
    pub tag: String,

    /// Port mappings (host -> container)
    pub ports: Vec<(u16, u16)>,

    /// Environment variables
    pub env: HashMap<String, String>,

    /// Volume mounts
    pub volumes: Vec<VolumeMount>,

    /// Network to connect to
    pub network: Option<String>,

    /// Health check configuration
    pub health_check: Option<HealthCheck>,

    /// Whether to remove container on stop
    pub auto_remove: bool,

    /// Memory limit
    pub memory_limit: Option<String>,

    /// CPU limit
    pub cpu_limit: Option<String>,

    /// Platform specification (e.g., "linux/amd64", "linux/arm64")
    pub platform: Option<String>,
}

/// Volume mount configuration
#[derive(Debug, Clone)]
pub struct VolumeMount {
    /// Source (host path or volume name)
    pub source: String,

    /// Target (container path)
    pub target: String,

    /// Read-only mount
    pub read_only: bool,
}

/// Health check configuration
#[derive(Debug, Clone)]
pub struct HealthCheck {
    /// Command to run for health check
    pub test: Vec<String>,

    /// Time between checks
    pub interval: String,

    /// Maximum time to wait for check
    pub timeout: String,

    /// Number of retries before marking unhealthy
    pub retries: i32,

    /// Start period for container initialization
    pub start_period: String,
}

/// Trait for Docker container templates
#[async_trait]
pub trait Template: Send + Sync {
    /// Get the template name
    fn name(&self) -> &str;

    /// Get the template configuration
    fn config(&self) -> &TemplateConfig;

    /// Get a mutable reference to the configuration
    fn config_mut(&mut self) -> &mut TemplateConfig;

    /// Build the RunCommand for this template
    fn build_command(&self) -> RunCommand {
        let config = self.config();
        let mut cmd = RunCommand::new(format!("{}:{}", config.image, config.tag))
            .name(&config.name)
            .detach();

        // Add port mappings
        for (host, container) in &config.ports {
            cmd = cmd.port(*host, *container);
        }

        // Add environment variables
        for (key, value) in &config.env {
            cmd = cmd.env(key, value);
        }

        // Add volume mounts
        for mount in &config.volumes {
            if mount.read_only {
                cmd = cmd.volume_ro(&mount.source, &mount.target);
            } else {
                cmd = cmd.volume(&mount.source, &mount.target);
            }
        }

        // Add network
        if let Some(network) = &config.network {
            cmd = cmd.network(network);
        }

        // Add health check
        if let Some(health) = &config.health_check {
            cmd = cmd
                .health_cmd(&health.test.join(" "))
                .health_interval(&health.interval)
                .health_timeout(&health.timeout)
                .health_retries(health.retries)
                .health_start_period(&health.start_period);
        }

        // Add resource limits
        if let Some(memory) = &config.memory_limit {
            cmd = cmd.memory(memory);
        }

        if let Some(cpu) = &config.cpu_limit {
            cmd = cmd.cpus(cpu);
        }

        // Add platform if specified
        if let Some(platform) = &config.platform {
            cmd = cmd.platform(platform);
        }

        // Auto-remove
        if config.auto_remove {
            cmd = cmd.remove();
        }

        cmd
    }

    /// Start the container with this template
    async fn start(&self) -> Result<String> {
        let config = self.config();
        info!(
            template = %config.name,
            image = %config.image,
            tag = %config.tag,
            "starting container from template"
        );

        let output = self.build_command().execute().await.map_err(|e| {
            error!(
                template = %config.name,
                error = %e,
                "failed to start container"
            );
            e
        })?;

        info!(
            template = %config.name,
            container_id = %output.0,
            "container started successfully"
        );

        Ok(output.0)
    }

    /// Start the container and wait for it to be ready
    async fn start_and_wait(&self) -> Result<String> {
        let config = self.config();
        info!(
            template = %config.name,
            "starting container and waiting for ready"
        );

        let container_id = self.start().await?;
        self.wait_for_ready().await?;

        info!(
            template = %config.name,
            container_id = %container_id,
            "container started and ready"
        );

        Ok(container_id)
    }

    /// Stop the container
    async fn stop(&self) -> Result<()> {
        use crate::StopCommand;

        let name = self.config().name.as_str();
        info!(template = %name, "stopping container");

        StopCommand::new(name).execute().await.map_err(|e| {
            error!(template = %name, error = %e, "failed to stop container");
            e
        })?;

        debug!(template = %name, "container stopped");
        Ok(())
    }

    /// Remove the container
    async fn remove(&self) -> Result<()> {
        use crate::RmCommand;

        let name = self.config().name.as_str();
        info!(template = %name, "removing container");

        RmCommand::new(name)
            .force()
            .volumes()
            .execute()
            .await
            .map_err(|e| {
                error!(template = %name, error = %e, "failed to remove container");
                e
            })?;

        debug!(template = %name, "container removed");
        Ok(())
    }

    /// Check if the container is running
    async fn is_running(&self) -> Result<bool> {
        use crate::PsCommand;

        let name = &self.config().name;

        let output = PsCommand::new()
            .filter(format!("name={name}"))
            .quiet()
            .execute()
            .await?;

        // In quiet mode, check if stdout contains any container IDs
        let running = !output.stdout.trim().is_empty();
        trace!(template = %name, running = running, "checked container running status");

        Ok(running)
    }

    /// Get container logs
    async fn logs(&self, follow: bool, tail: Option<&str>) -> Result<crate::CommandOutput> {
        use crate::LogsCommand;

        let mut cmd = LogsCommand::new(&self.config().name);

        if follow {
            cmd = cmd.follow();
        }

        if let Some(lines) = tail {
            cmd = cmd.tail(lines);
        }

        cmd.execute().await.map_err(Into::into)
    }

    /// Execute a command in the running container
    async fn exec(&self, command: Vec<&str>) -> Result<crate::ExecOutput> {
        use crate::ExecCommand;

        let cmd_vec: Vec<String> = command.iter().map(|s| s.to_string()).collect();
        let cmd = ExecCommand::new(&self.config().name, cmd_vec);

        cmd.execute().await.map_err(Into::into)
    }

    /// Wait for the container to be ready
    ///
    /// This method will wait for the container to pass its health checks
    /// or reach a ready state. The default implementation waits for the
    /// container to be running and healthy (if health checks are configured).
    ///
    /// Templates can override this to provide custom readiness checks.
    #[allow(clippy::too_many_lines)]
    async fn wait_for_ready(&self) -> Result<()> {
        use std::time::Duration;
        use tokio::time::{sleep, timeout, Instant};

        let name = &self.config().name;
        let has_health_check = self.config().health_check.is_some();

        // Default timeout of 60 seconds (increased for slower systems/Windows)
        let wait_timeout = Duration::from_secs(60);
        let check_interval = Duration::from_millis(500);

        info!(
            template = %name,
            timeout_secs = wait_timeout.as_secs(),
            has_health_check = has_health_check,
            "waiting for container to be ready"
        );

        let start_time = Instant::now();
        let mut check_count = 0u32;

        let result = timeout(wait_timeout, async {
            loop {
                check_count += 1;

                // Check if container is running - keep retrying if not yet started
                // Don't fail immediately as the container may still be starting up
                let running = self.is_running().await.unwrap_or(false);
                if !running {
                    trace!(
                        template = %name,
                        check = check_count,
                        "container not yet running, waiting"
                    );
                    sleep(check_interval).await;
                    continue;
                }

                // If there's a health check configured, wait for it
                if has_health_check {
                    use crate::InspectCommand;

                    if let Ok(inspect) = InspectCommand::new(name).execute().await {
                        // Check health status in the inspect output
                        if let Ok(containers) =
                            serde_json::from_str::<serde_json::Value>(&inspect.stdout)
                        {
                            if let Some(first) = containers.as_array().and_then(|arr| arr.first()) {
                                if let Some(state) = first.get("State") {
                                    if let Some(health) = state.get("Health") {
                                        if let Some(status) =
                                            health.get("Status").and_then(|s| s.as_str())
                                        {
                                            trace!(
                                                template = %name,
                                                check = check_count,
                                                health_status = %status,
                                                "health check status"
                                            );

                                            if status == "healthy" {
                                                #[allow(clippy::cast_possible_truncation)]
                                                let elapsed_ms = start_time.elapsed().as_millis() as u64;
                                                debug!(
                                                    template = %name,
                                                    checks = check_count,
                                                    elapsed_ms = elapsed_ms,
                                                    "container healthy"
                                                );
                                                return Ok(());
                                            } else if status == "unhealthy" {
                                                warn!(
                                                    template = %name,
                                                    "container reported unhealthy, continuing to wait"
                                                );
                                            }
                                        }
                                    } else if let Some(running) =
                                        state.get("Running").and_then(|r| r.as_bool())
                                    {
                                        // No health check configured, just check if running
                                        if running {
                                            #[allow(clippy::cast_possible_truncation)]
                                            let elapsed_ms = start_time.elapsed().as_millis() as u64;
                                            debug!(
                                                template = %name,
                                                checks = check_count,
                                                elapsed_ms = elapsed_ms,
                                                "container running (no health check)"
                                            );
                                            return Ok(());
                                        }
                                    }
                                }
                            }
                        }
                    }
                } else {
                    // No health check, just ensure it's running
                    #[allow(clippy::cast_possible_truncation)]
                    let elapsed_ms = start_time.elapsed().as_millis() as u64;
                    debug!(
                        template = %name,
                        checks = check_count,
                        elapsed_ms = elapsed_ms,
                        "container running (no health check configured)"
                    );
                    return Ok(());
                }

                sleep(check_interval).await;
            }
        })
        .await;

        if let Ok(inner) = result {
            inner
        } else {
            error!(
                template = %name,
                timeout_secs = wait_timeout.as_secs(),
                checks = check_count,
                "container failed to become ready within timeout"
            );
            Err(TemplateError::InvalidConfig(format!(
                "Container {name} failed to become ready within timeout"
            )))
        }
    }
}

/// Builder for creating custom templates
pub struct TemplateBuilder {
    config: TemplateConfig,
}

impl TemplateBuilder {
    /// Create a new template builder
    pub fn new(name: impl Into<String>, image: impl Into<String>) -> Self {
        Self {
            config: TemplateConfig {
                name: name.into(),
                image: image.into(),
                tag: "latest".to_string(),
                ports: Vec::new(),
                env: HashMap::new(),
                volumes: Vec::new(),
                network: None,
                health_check: None,
                auto_remove: false,
                memory_limit: None,
                cpu_limit: None,
                platform: None,
            },
        }
    }

    /// Set the image tag
    pub fn tag(mut self, tag: impl Into<String>) -> Self {
        self.config.tag = tag.into();
        self
    }

    /// Add a port mapping
    pub fn port(mut self, host: u16, container: u16) -> Self {
        self.config.ports.push((host, container));
        self
    }

    /// Add an environment variable
    pub fn env(mut self, key: impl Into<String>, value: impl Into<String>) -> Self {
        self.config.env.insert(key.into(), value.into());
        self
    }

    /// Add a volume mount
    pub fn volume(mut self, source: impl Into<String>, target: impl Into<String>) -> Self {
        self.config.volumes.push(VolumeMount {
            source: source.into(),
            target: target.into(),
            read_only: false,
        });
        self
    }

    /// Add a read-only volume mount
    pub fn volume_ro(mut self, source: impl Into<String>, target: impl Into<String>) -> Self {
        self.config.volumes.push(VolumeMount {
            source: source.into(),
            target: target.into(),
            read_only: true,
        });
        self
    }

    /// Set the network
    pub fn network(mut self, network: impl Into<String>) -> Self {
        self.config.network = Some(network.into());
        self
    }

    /// Enable auto-remove
    pub fn auto_remove(mut self) -> Self {
        self.config.auto_remove = true;
        self
    }

    /// Set memory limit
    pub fn memory_limit(mut self, limit: impl Into<String>) -> Self {
        self.config.memory_limit = Some(limit.into());
        self
    }

    /// Set CPU limit
    pub fn cpu_limit(mut self, limit: impl Into<String>) -> Self {
        self.config.cpu_limit = Some(limit.into());
        self
    }

    /// Build into a custom template
    pub fn build(self) -> CustomTemplate {
        CustomTemplate {
            config: self.config,
        }
    }
}

/// A custom template created from `TemplateBuilder`
pub struct CustomTemplate {
    config: TemplateConfig,
}

#[async_trait]
impl Template for CustomTemplate {
    fn name(&self) -> &str {
        &self.config.name
    }

    fn config(&self) -> &TemplateConfig {
        &self.config
    }

    fn config_mut(&mut self) -> &mut TemplateConfig {
        &mut self.config
    }
}

/// Trait for templates that can provide a connection string.
///
/// This trait is implemented by templates that represent services with
/// connection endpoints (databases, caches, etc.).
pub trait HasConnectionString {
    /// Returns the connection string/URL for connecting to the service.
    ///
    /// The format depends on the service type:
    /// - Redis: `redis://[password@]host:port`
    /// - PostgreSQL: `postgresql://user:password@host:port/database`
    /// - MySQL: `mysql://user:password@host:port/database`
    /// - MongoDB: `mongodb://[user:password@]host:port[/database]`
    fn connection_string(&self) -> String;
}

// Compatibility re-exports for backward compatibility
// These allow users to still import directly from template::
#[cfg(feature = "template-redis")]
pub use redis::RedisTemplate;

#[cfg(feature = "template-redis-cluster")]
pub use redis::{ClusterInfo, NodeInfo, NodeRole, RedisClusterConnection, RedisClusterTemplate};

#[cfg(feature = "template-redis-enterprise")]
pub use redis::{RedisEnterpriseConnectionInfo, RedisEnterpriseTemplate};

#[cfg(feature = "template-postgres")]
pub use database::postgres::{PostgresConnectionString, PostgresTemplate};

#[cfg(feature = "template-mysql")]
pub use database::mysql::{MysqlConnectionString, MysqlTemplate};

#[cfg(feature = "template-mongodb")]
pub use database::mongodb::{MongodbConnectionString, MongodbTemplate};

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