add command works ,fix warnings, proxy repaired, docker start arguments defined

This commit is contained in:
2026-06-05 22:03:22 +02:00
parent e52763c35e
commit 25d7a6ffd1
19 changed files with 819 additions and 132 deletions

View File

@ -1,16 +1,6 @@
use bollard::Docker;
use std::env;
use std::sync::LazyLock;
use diesel::PgConnection;
use diesel::r2d2::{
Pool,
ConnectionManager
};
pub static mut DOCKER: LazyLock<Docker> = LazyLock::new(|| Docker::connect_with_local_defaults().expect("Failed to connect to the docker socket") );