Expose 9000 for native clickhouse protocol (dev mode) (#3162)

* Expose 9009 for native clickhouse protocol (dev mode)

* s/9009/9000
This commit is contained in:
hq1 2023-07-19 10:23:31 +02:00 committed by GitHub
parent bf84c043ce
commit edd2757531
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ install: ## Run the initial setup
server: ## Start the web server
mix phx.server
CH_FLAGS ?= --detach -p 8123:8123 --ulimit nofile=262144:262144 --name plausible_clickhouse
CH_FLAGS ?= --detach -p 8123:8123 -p 9000:9000 --ulimit nofile=262144:262144 --name plausible_clickhouse
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