Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion helix-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "helix-cli"
version = "2.2.7"
version = "2.2.8"
edition = "2024"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion helix-cli/src/commands/push.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ async fn push_local_instance(
("Local URL", &format!("http://localhost:{actual_port}")),
(
"Container",
&format!("helix_{project_name}_{instance_name}"),
&format!("helix-{project_name}-{instance_name}"),
),
(
"Data volume",
Expand Down
6 changes: 3 additions & 3 deletions helix-cli/src/docker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ impl<'a> DockerManager<'a> {
let workspace = self.project.instance_workspace(instance_name);
let project_name = self.compose_project_name(instance_name);

let mut full_args = vec!["--project-name", &project_name];
let mut full_args = vec!["-p", &project_name];
full_args.extend(args);

let output = Command::new(self.runtime.binary())
Expand Down Expand Up @@ -707,11 +707,11 @@ networks:
/// Check if an instance container exists (running or stopped)
pub fn instance_exists(&self, instance_name: &str) -> Result<bool> {
let statuses = self.get_project_status()?;
let target_container_name = format!("helix_{instance_name}_app");
let target_container_name = self.container_name(instance_name);

Ok(statuses
.iter()
.any(|status| status.container_name.contains(&target_container_name)))
.any(|status| status.container_name == target_container_name))
}

/// Get status of all Docker/Podman containers for this project
Expand Down
2 changes: 1 addition & 1 deletion helix-db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "helix-db"
version = "1.2.7"
version = "1.2.8"
edition = "2024"
description = "HelixDB is a powerful, open-source, graph-vector database built in Rust for intelligent data storage for RAG and AI."
license = "AGPL-3.0"
Expand Down
Loading
Loading