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 +```