Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update quickstart.md to explain export statement. #963

Merged
merged 1 commit into from
Dec 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update quickstart.md
Update quickstart.md to explain export statement.
  • Loading branch information
subkanthi authored Dec 22, 2024
commit 618e8e5c77845ebf0f0a3b9dc8f6dca266fd10b4
8 changes: 6 additions & 2 deletions doc/quickstart.md
Original file line number Diff line number Diff line change
@@ -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
```
Loading