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:
parent
bf84c043ce
commit
edd2757531
2
Makefile
2
Makefile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue