add docker container creation (add broken since sqlite change)

This commit is contained in:
2026-06-09 00:42:50 +02:00
parent 410ca2eeef
commit 5136e0bdc3
13 changed files with 187 additions and 23 deletions

View File

@ -1,11 +1,13 @@
pub struct Config {
pub config_path: String
pub config_path: String,
pub docker_image: String,
}
impl Config {
pub fn load() -> Self {
Self {
config_path: "/home/tom/desktop/rust/yo_mama/servers".to_string() // that's my program I do what I want
config_path: "/home/tom/desktop/rust/yo_mama/servers".to_string(), // that's my program I do what I want
docker_image: "itzg/minecraft-server".to_string()
}
}
}