diff --git a/app/src-tauri/src/docker/container.rs b/app/src-tauri/src/docker/container.rs index 0ff5eda..27955ff 100644 --- a/app/src-tauri/src/docker/container.rs +++ b/app/src-tauri/src/docker/container.rs @@ -120,6 +120,9 @@ pub async fn create_container( let mut env_vars: Vec = Vec::new(); + // Tell CLI tools the terminal supports 24-bit RGB color + env_vars.push("COLORTERM=truecolor".to_string()); + // Pass host UID/GID so the entrypoint can remap the container user #[cfg(unix)] {