From a3872a57ed1dd32cc0ab6a700b10196b2e97bcbd Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Thu, 5 Jun 2025 17:45:00 -0700 Subject: [PATCH] fix docker cli --- arch/tools/cli/docker_cli.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/arch/tools/cli/docker_cli.py b/arch/tools/cli/docker_cli.py index ba9ef92c..e8a12a13 100644 --- a/arch/tools/cli/docker_cli.py +++ b/arch/tools/cli/docker_cli.py @@ -64,8 +64,6 @@ def docker_start_archgw_detached( item for volume in volume_mappings for item in ("-v", volume) ] - print("using custom release path") - options = [ "docker", "run", @@ -78,7 +76,6 @@ def docker_start_archgw_detached( "--add-host", "host.docker.internal:host-gateway", ARCHGW_DOCKER_IMAGE, - "/Users/adilhafeez/src/intelligent-prompt-gateway/crates/target/wasm32-wasip1/release:/etc/envoy/proxy-wasm-plugins:ro", ] result = subprocess.run(options, capture_output=True, text=True, check=False)