From ad9cd197af7a8b6cf8228a8e1928d286c63af6ea Mon Sep 17 00:00:00 2001 From: Nikolaos Karaolidis Date: Tue, 16 Jan 2024 11:37:24 +0000 Subject: [PATCH] Add support deployment notes Signed-off-by: Nikolaos Karaolidis --- support/README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 support/README.md diff --git a/support/README.md b/support/README.md new file mode 100644 index 0000000..d62c0bf --- /dev/null +++ b/support/README.md @@ -0,0 +1,28 @@ +# Support + +All the following instructions are relative to the root of the repository. + +## CI/CD + +```bash +cd support/ci +docker build . -t registry.karaolidis.com/karaolidis/qrust/rust +docker push registry.karaolidis.com/karaolidis/qrust/rust +cd ../.. +``` + +## ClickHouse + +```bash +cd support/clickhouse +mkdir -p config.d docker-entrypoint-initdb.d users.d +cd ../.. +docker-compose up clickhouse +``` + +## Ollama + +```bash +docker-compose up ollama +docker exec -it qrust-ollama-1 ollama pull llama2 +```