34 lines
942 B
Bash
34 lines
942 B
Bash
################################################################
|
|
|
|
PUID=${PUID}
|
|
PGID=${MEDIA_PGID}
|
|
TZ=${TZ}
|
|
|
|
################################################################
|
|
# DB related
|
|
# ----------
|
|
PHOTOVIEW_DATABASE_DRIVER=${PHOTOVIEW_DATABASE_DRIVER}
|
|
POSTGRES_DB_PORT=${POSTGRES_DB_PORT}
|
|
#
|
|
# can't get photoview to work with docker secrets; secrets added here for future compatibility only
|
|
# POSTGRES_DB_FILE=${POSTGRES_DB_FILE}
|
|
# POSTGRES_USER_FILE=${POSTGRES_USER_FILE}
|
|
# POSTGRES_PASSWORD_FILE=${POSTGRES_PASSWORD_FILE}
|
|
# OR
|
|
# PHOTOVIEW_POSTGRES_URL_FILE=${DATABASE_URL_FILE}
|
|
|
|
# Server related
|
|
# --------------
|
|
PHOTOVIEW_LISTEN_IP=localhost
|
|
PHOTOVIEW_LISTEN_PORT=${WEBUI_PORT}
|
|
|
|
# General
|
|
# -------
|
|
PHOTOVIEW_MEDIA_CACHE=/home/photoview/media-cache
|
|
#MAPBOX_TOKEN=
|
|
PHOTOVIEW_DISABLE_FACE_RECOGNITION=0
|
|
PHOTOVIEW_DISABLE_VIDEO_ENCODING=0
|
|
PHOTOVIEW_DISABLE_RAW_PROCESSING=0
|
|
|
|
################################################################
|