Skip to content

Commit

Permalink
- remove doc test
Browse files Browse the repository at this point in the history
  • Loading branch information
agallardol committed Dec 18, 2024
1 parent c8b2ea4 commit 9c9d75a
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions libs/shinkai-tools-runner/src/tools/container_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,6 @@ pub enum DockerStatus {
/// - Docker daemon is not running
/// - User lacks permissions
/// - Other Docker configuration issues
///
/// # Example
///
/// ```
/// use shinkai_tools_runner::tools::container_utils;
///
/// let docker_available = container_utils::is_docker_available();
/// if docker_available {
/// println!("docker is available and ready to use");
/// } else {
/// println!("docker is not available - check installation and permissions");
/// }
/// ```
pub fn is_docker_available() -> DockerStatus {
let docker_check = Command::new("docker").arg("info").output();

Expand Down

0 comments on commit 9c9d75a

Please sign in to comment.