mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-13 21:02:18 +08:00
19 lines
715 B
Bash
19 lines
715 B
Bash
# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables
|
|
|
|
# The location where your uploaded files are stored
|
|
UPLOAD_LOCATION=${UPLOAD_LOCATION}
|
|
|
|
# The Immich version to use. You can pin this to a specific version like "v1.71.0"
|
|
#IMMICH_VERSION=release
|
|
|
|
# Connection secret for postgres. You should change it to a random password
|
|
DB_PASSWORD=${PANEL_DB_USER_PASSWORD}
|
|
|
|
# The values below this line do not need to be changed
|
|
###################################################################################
|
|
DB_HOSTNAME=${CONTAINER_NAME}-postgres
|
|
DB_USERNAME=${PANEL_DB_USER}
|
|
DB_DATABASE_NAME=${PANEL_DB_NAME}
|
|
|
|
REDIS_HOSTNAME=${CONTAINER_NAME}-redis
|