mirror of
https://github.com/immich-app/immich.git
synced 2025-05-30 19:54:52 -04:00
feat(deployment): support docker secrets (#1254)
* Support secrets * Rewrite to support sh * Remove JWT_SECRET
This commit is contained in:
parent
7dbddba757
commit
4261fc8a04
@ -1,2 +1,23 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
|
|
||||||
|
if [ "$DB_HOSTNAME_FILE" ]; then
|
||||||
|
export DB_HOSTNAME=$(cat $DB_HOSTNAME_FILE)
|
||||||
|
unset DB_HOSTNAME_FILE
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$DB_DATABASE_NAME_FILE" ]; then
|
||||||
|
export DB_DATABASE_NAME=$(cat $DB_DATABASE_NAME_FILE)
|
||||||
|
unset DB_DATABASE_NAME_FILE
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$DB_USERNAME_FILE" ]; then
|
||||||
|
export DB_USERNAME=$(cat $DB_USERNAME_FILE)
|
||||||
|
unset DB_USERNAME_FILE
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$DB_PASSWORD_FILE" ]; then
|
||||||
|
export DB_PASSWORD=$(cat $DB_PASSWORD_FILE)
|
||||||
|
unset DB_PASSWORD_FILE
|
||||||
|
fi
|
||||||
|
|
||||||
exec node dist/apps/microservices/apps/microservices/src/main
|
exec node dist/apps/microservices/apps/microservices/src/main
|
||||||
|
@ -1,2 +1,23 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
|
|
||||||
|
if [ "$DB_HOSTNAME_FILE" ]; then
|
||||||
|
export DB_HOSTNAME=$(cat $DB_HOSTNAME_FILE)
|
||||||
|
unset DB_HOSTNAME_FILE
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$DB_DATABASE_NAME_FILE" ]; then
|
||||||
|
export DB_DATABASE_NAME=$(cat $DB_DATABASE_NAME_FILE)
|
||||||
|
unset DB_DATABASE_NAME_FILE
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$DB_USERNAME_FILE" ]; then
|
||||||
|
export DB_USERNAME=$(cat $DB_USERNAME_FILE)
|
||||||
|
unset DB_USERNAME_FILE
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$DB_PASSWORD_FILE" ]; then
|
||||||
|
export DB_PASSWORD=$(cat $DB_PASSWORD_FILE)
|
||||||
|
unset DB_PASSWORD_FILE
|
||||||
|
fi
|
||||||
|
|
||||||
exec node dist/apps/immich/apps/immich/src/main
|
exec node dist/apps/immich/apps/immich/src/main
|
||||||
|
Loading…
x
Reference in New Issue
Block a user