mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
c0b5061520
Make docker-server binary fixed between unit/gunicorn images We want it to be a full drop-in replacement
18 lines
616 B
Bash
Executable File
18 lines
616 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
./bin/migrate-check
|
|
|
|
# To ensure we are able to expose metrics from multiple processes, we need to
|
|
# provide a directory for `prometheus_client` to store a shared registry.
|
|
export PROMETHEUS_MULTIPROC_DIR=$(mktemp -d)
|
|
chmod -R 777 $PROMETHEUS_MULTIPROC_DIR
|
|
trap 'rm -rf "$PROMETHEUS_MULTIPROC_DIR"' EXIT
|
|
|
|
export PROMETHEUS_METRICS_EXPORT_PORT=8001
|
|
export STATSD_PORT=${STATSD_PORT:-8125}
|
|
|
|
# We need to run as --user root so that nginx unit can proxy the control socket for stats
|
|
# However each application is run as "nobody"
|
|
exec /usr/local/bin/docker-entrypoint.sh unitd --no-daemon --user root
|