/
/
/
1# Immich Environment Configuration
2
3# Upload location on host
4UPLOAD_LOCATION={{ immich_upload_dir }}
5
6# Database location on host
7DB_DATA_LOCATION={{ immich_config_dir }}/postgres
8
9TZ={{ runner_timezone }}
10
11IMMICH_VERSION=release
12
13IMMICH_CONFIG_FILE=/config/immich.json
14
15# Database credentials
16DB_PASSWORD={{ postgres_password }}
17DB_USERNAME={{ postgres_user }}
18DB_DATABASE_NAME={{ postgres_db }}
19
20{% if gpu_enabled %}
21# NVIDIA GPU Configuration
22NVIDIA_DRIVER_CAPABILITIES=compute,utility,video
23NVIDIA_VISIBLE_DEVICES=all
24{% endif %}
25
26# Logging Configuration
27IMMICH_LOG_LEVEL={{ immich_log_level | default('log') }}