From fd03a4a82ff52b4282e7e27a61e60929a82158e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cenk=20K=C3=BCc=C3=BCk?= Date: Thu, 9 Jan 2025 16:01:17 +0000 Subject: [PATCH] upgrade clickhouse-server image --- .github/workflows/elixir.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index b33e83af7351..4929c5902b61 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -42,7 +42,7 @@ jobs: --health-timeout 5s --health-retries 5 clickhouse: - image: clickhouse/clickhouse-server:24.8.5.115-alpine + image: clickhouse/clickhouse-server:24.12.2.29-alpine ports: - 8123:8123 env: diff --git a/Makefile b/Makefile index 0ad1b5267522..2391673e26f5 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ clickhouse-client: ## Connect to clickhouse docker exec -it plausible_clickhouse clickhouse-client -d plausible_events_db clickhouse-prod: ## Start a container with the same version of clickhouse as the one in prod - docker run $(CH_FLAGS) --volume=$$PWD/.clickhouse_db_vol_prod:/var/lib/clickhouse clickhouse/clickhouse-server:24.8.5.115-alpine + docker run $(CH_FLAGS) --volume=$$PWD/.clickhouse_db_vol_prod:/var/lib/clickhouse clickhouse/clickhouse-server:24.12.2.29-alpine clickhouse-stop: ## Stop and remove the clickhouse container docker stop plausible_clickhouse && docker rm plausible_clickhouse