forked from immich-app/immich
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: shell scripts (immich-app#7189)
* fix: bash scripts * fix: use bash * fix: e2e
- Loading branch information
Showing
5 changed files
with
22 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
#!/usr/bin/env sh | ||
#!/usr/bin/env bash | ||
|
||
./start.sh microservices |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
#!/usr/bin/env sh | ||
#!/usr/bin/env bash | ||
|
||
./start.sh immich |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,17 @@ | ||
#!/usr/bin/env sh | ||
|
||
lib_path="/usr/lib/$(arch)-linux-gnu/libmimalloc.so.2" | ||
export LD_PRELOAD="$lib_path" | ||
|
||
if [ "$DB_URL_FILE" ]; then | ||
DB_URL_CONTENT=$(cat "$DB_URL_FILE") | ||
export DB_URL="$DB_URL_CONTENT" | ||
unset DB_URL_FILE | ||
fi | ||
|
||
if [ "$DB_HOSTNAME_FILE" ]; then | ||
DB_HOSTNAME_CONTENT=$(cat "$DB_HOSTNAME_FILE") | ||
export DB_HOSTNAME="$DB_HOSTNAME_CONTENT" | ||
unset DB_HOSTNAME_FILE | ||
fi | ||
|
||
if [ "$DB_DATABASE_NAME_FILE" ]; then | ||
DB_DATABASE_CONTENT=$(cat "$DB_DATABASE_NAME_FILE") | ||
export DB_DATABASE_NAME="$DB_DATABASE_CONTENT" | ||
unset DB_DATABASE_NAME_FILE | ||
fi | ||
|
||
if [ "$DB_USERNAME_FILE" ]; then | ||
DB_USERNAME_CONTENT=$(cat "$DB_USERNAME_FILE") | ||
export DB_USERNAME="$DB_USERNAME_CONTENT" | ||
unset DB_USERNAME_FILE | ||
fi | ||
|
||
if [ "$DB_PASSWORD_FILE" ]; then | ||
DB_PASSWORD_CONTENT=$(cat "$DB_PASSWORD_FILE") | ||
export DB_PASSWORD="$DB_PASSWORD_CONTENT" | ||
unset DB_PASSWORD_FILE | ||
fi | ||
|
||
if [ "$REDIS_PASSWORD_FILE" ]; then | ||
REDIS_PASSWORD_CONTENT=$(cat "$REDIS_PASSWORD_FILE") | ||
export DB_PASSWORD="$REDIS_PASSWORD_CONTENT" | ||
unset REDIS_PASSWORD_FILE | ||
fi | ||
#!/usr/bin/env bash | ||
|
||
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" | ||
|
||
exec node /usr/src/app/dist/main "$@" |