start refactor of ip management

This commit is contained in:
2025-12-14 21:22:07 +00:00
parent 3b5e7e1986
commit 7cabefc76e
13 changed files with 1500 additions and 777 deletions

View File

@@ -4,9 +4,8 @@ use crate::deploy::container_options::Options;
pub struct Instance {
pub id: i64,
pub docker_id: String,
pub ip: String,
pub ip: Option<String>,
pub domain: String,
pub image: i64,
pub ops: Options,
}