mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 18:08:48 -07:00
e183ff6feb
This change makes sure the ref should be in pretty much any log we might get sent, making it easier to catch people running the wrong version.
29 lines
809 B
Bash
Executable File
29 lines
809 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "Initializing Immich $IMMICH_SOURCE_REF"
|
|
|
|
lib_path="/usr/lib/$(arch)-linux-gnu/libmimalloc.so.2"
|
|
export LD_PRELOAD="$lib_path"
|
|
|
|
read_file_and_export() {
|
|
if [ -n "${!1}" ]; then
|
|
content="$(cat "${!1}")"
|
|
export "$2"="${content}"
|
|
unset "$1"
|
|
fi
|
|
}
|
|
read_file_and_export "DB_URL_FILE" "DB_URL"
|
|
read_file_and_export "DB_HOSTNAME_FILE" "DB_HOSTNAME"
|
|
read_file_and_export "DB_DATABASE_NAME_FILE" "DB_DATABASE_NAME"
|
|
read_file_and_export "DB_USERNAME_FILE" "DB_USERNAME"
|
|
read_file_and_export "DB_PASSWORD_FILE" "DB_PASSWORD"
|
|
read_file_and_export "REDIS_PASSWORD_FILE" "REDIS_PASSWORD"
|
|
|
|
export CPU_CORES="${CPU_CORES:=$(./get-cpus.sh)}"
|
|
echo "Detected CPU Cores: $CPU_CORES"
|
|
if [ "$CPU_CORES" -gt 4 ]; then
|
|
export UV_THREADPOOL_SIZE=$CPU_CORES
|
|
fi
|
|
|
|
exec node /usr/src/app/dist/main "$@"
|