21 lines
786 B
Django/Jinja
21 lines
786 B
Django/Jinja
# 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=./immich/library
|
|
# The location where your database files are stored
|
|
DB_DATA_LOCATION=./immich/postgres
|
|
|
|
# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
|
|
# TZ=Etc/UTC
|
|
|
|
# The Immich version to use. You can pin this to a specific version like "v1.71.0"
|
|
IMMICH_VERSION=v1.121.0
|
|
|
|
#DB_URL='postgresql://immich:immichdbpassword@postgres.injust.us:5432/immich'
|
|
DB_HOSTNAME=postgres.injust.us
|
|
DB_PORT=5432
|
|
DB_USERNAME=immich
|
|
DB_PASSWORD={{ immich_db_password }}
|
|
DB_DATABASE_NAME=immich
|
|
|