mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
9da6ee3b5f
* m1 clickhouse support * add clickhouse arm64 compilation dockerfile * use clang-12 and 2 parallel builds * working clickhouse docker image * this needs to be committed out for CH to work... a known issue. WIP * move things around * move things around again * add arm64 build scripts * comment out broken line in DEBUG mode, still make it break production builds * update readme * timeless text * add issue in comment * way way way too much white space * zookeeper restarts sometimes needed
12 lines
322 B
Bash
Executable File
12 lines
322 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Practical advice: Use this in development only!
|
|
#
|
|
# This builds an docker image for the M1 Mac.
|
|
# The build will take about 90min.
|
|
# Set the GIT_TAG in arm64.compile.Dockerfile to choose a version.
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
docker build assets -f assets/arm64.compile.Dockerfile -t clickhouse-dev-arm64:latest
|