upgrade clickhouse (#3113)

This commit is contained in:
Cenk Kücük 2023-07-11 13:54:50 +02:00 committed by GitHub
parent 7e2627ae4c
commit 13a38aee14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ jobs:
--health-retries 5
clickhouse:
image: clickhouse/clickhouse-server:22.8.13.20-alpine
image: clickhouse/clickhouse-server:23.3.7.5-alpine
ports:
- 8123:8123
env:

View File

@ -21,7 +21,7 @@ clickhouse: ## Start a container with a recent version of clickhouse
docker run $(CH_FLAGS) --volume=$$PWD/.clickhouse_db_vol:/var/lib/clickhouse clickhouse/clickhouse-server:22.9-alpine
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:22.8.13.20-alpine
docker run $(CH_FLAGS) --volume=$$PWD/.clickhouse_db_vol_prod:/var/lib/clickhouse clickhouse/clickhouse-server:23.3.7.5-alpine
clickhouse-stop: ## Stop and remove the clickhouse container
docker stop plausible_clickhouse && docker rm plausible_clickhouse