From 7c62d7260dfb9ba756fab2b63ed526991e73439a Mon Sep 17 00:00:00 2001 From: greg pereira Date: Thu, 11 Apr 2024 09:38:31 -0700 Subject: [PATCH] removing --net=host from the run command of llamacpp_python ms Signed-off-by: greg pereira --- model_servers/llamacpp_python/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model_servers/llamacpp_python/Makefile b/model_servers/llamacpp_python/Makefile index 62e3bc91..09ab49b6 100644 --- a/model_servers/llamacpp_python/Makefile +++ b/model_servers/llamacpp_python/Makefile @@ -65,7 +65,7 @@ install: .PHONY: run run: cd ../../models && \ - podman run -it -d -p $(PORT):$(PORT) -v ./$(SELECTED_MODEL_NAME):$(MODELS_PATH)/model.gguf:$(BIND_MOUNT_OPTIONS) -e MODEL_PATH=$(MODELS_PATH)/model.gguf -e HOST=0.0.0.0 -e PORT=$(PORT) --net=host $(IMAGE) + podman run -it -d -p $(PORT):$(PORT) -v ./$(SELECTED_MODEL_NAME):$(MODELS_PATH)/model.gguf:$(BIND_MOUNT_OPTIONS) -e MODEL_PATH=$(MODELS_PATH)/model.gguf -e HOST=0.0.0.0 -e PORT=$(PORT) $(IMAGE) .PHONY: test test: