From cfca607f3b0bdcc0def1bc720c502bf9c6b6b6ce Mon Sep 17 00:00:00 2001 From: Brian Thorne Date: Mon, 16 Sep 2024 19:30:42 +1200 Subject: [PATCH] Add instructions for using the Docker image in README.md * **Docker Usage** - Add instructions for building the Docker image - Add instructions for running the Docker image - Update the Docker image name to `ghcr.io/hardbyte/qabot` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f236bc..1447a13 100644 --- a/README.md +++ b/README.md @@ -207,7 +207,7 @@ docker build -t qabot . To run the Docker image, use the following command: ```bash -docker run --rm -e OPENAI_API_KEY=your_openai_api_key qabot -w -q "How many Hospitals are there located in Beijing" +docker run --rm -e OPENAI_API_KEY=your_openai_api_key ghcr.io/hardbyte/qabot -w -q "How many Hospitals are there located in Beijing" ``` Replace `your_openai_api_key` with your actual OpenAI API key.