mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
ba6fc5651b
* Fix user name on distributed queries * wip * fix * Docker update and improve * Fix
13 lines
403 B
Makefile
13 lines
403 B
Makefile
build: image
|
|
mkdir -p $(HOME)/.ccache
|
|
docker run --network=host --rm --workdir /server --volume $(realpath ../..):/server --mount=type=bind,source=$(HOME)/.ccache,destination=/ccache -e CCACHE_DIR=/ccache -it yandex/clickhouse-builder
|
|
|
|
pull:
|
|
docker pull yandex/clickhouse-builder
|
|
|
|
image:
|
|
docker build --network=host -t yandex/clickhouse-builder .
|
|
|
|
image_push:
|
|
docker push yandex/clickhouse-builder
|