Skip to content

Commit

Permalink
removing --net=host from the run command of llamacpp_python ms
Browse files Browse the repository at this point in the history
Signed-off-by: greg pereira <[email protected]>
  • Loading branch information
Gregory-Pereira committed Apr 11, 2024
1 parent 226a51f commit 7c62d72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model_servers/llamacpp_python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 7c62d72

Please sign in to comment.