fix clickhouse-ci rule in Makefile (#2614)

This commit is contained in:
ruslandoga 2023-01-20 20:52:39 +07:00 committed by GitHub
parent e3f095ade7
commit 8640ba499f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ clickhouse-prod: ## Start a container with the same version of clickhouse as the
docker run $(CH_FLAGS) --volume=$$PWD/.clickhouse_db_vol_prod:/var/lib/clickhouse clickhouse/clickhouse-server:21.11.3.6
clickhouse-ci: ## Start a container with the same version of clickhouse as the one in .github/workflows/elixir.yml
docker run $(CH_FLAGS)--volume=$$PWD/.clickhouse_db_vol_ci:/var/lib/clickhouse yandex/clickhouse-server:21.11
docker run $(CH_FLAGS) --volume=$$PWD/.clickhouse_db_vol_ci:/var/lib/clickhouse yandex/clickhouse-server:21.11
clickhouse-stop: ## Stop and remove the clickhouse container
docker stop plausible_clickhouse && docker rm plausible_clickhouse