From 618e8e5c77845ebf0f0a3b9dc8f6dca266fd10b4 Mon Sep 17 00:00:00 2001 From: Kanthi Date: Sun, 22 Dec 2024 10:28:24 -0500 Subject: [PATCH] Update quickstart.md Update quickstart.md to explain export statement. --- doc/quickstart.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/doc/quickstart.md b/doc/quickstart.md index 728b28bc0..3714b47e4 100644 --- a/doc/quickstart.md +++ b/doc/quickstart.md @@ -30,13 +30,17 @@ sudo apt install clickhouse-client Use Docker Compose to start containers. Set the `CLICKHOUSE_SINK_CONNECTOR_LT_IMAGE` to the latest release from the Releases page. -or run `./getLatestTag.sh` which will set the environment variable +or run `./getLatestTag.sh` which will print the environment variable +that need to be exported. ``` cd sink-connector-lightweight/docker ./getLatestTag.sh ``` - +Example: +``` + export CLICKHOUSE_SINK_CONNECTOR_LT_IMAGE=altinity/clickhouse-sink-connector:2.5.0-lt +``` ``` docker compose -f docker-compose-mysql.yml up --renew-anon-volumes ```