-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.env
More file actions
42 lines (33 loc) · 1.26 KB
/
.env
File metadata and controls
42 lines (33 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Deduper settings
DEDUP_PORT=8086
DEDUP_DATA=./data
# Image tag selection
# CPU (default): razgrizhsu/immich-deduper:latest
# CPU explicit: razgrizhsu/immich-deduper:latest-cpu
# CUDA explicit: razgrizhsu/immich-deduper:latest-cuda
DEDUP_IMAGE=razgrizhsu/immich-deduper:latest
# Immich library connection (UPLOAD_LOCATION env variable of Immich if you're using Immich with docker compose)
# This folder should contain the 'thumbs', 'library' subfolder from your Immich installation.
IMMICH_PATH=/path/to/immich
# Optional: separate thumbnail directory (uncomment if needed)
# IMMICH_THUMB=/path/to/immich/thumbnails
# PostgreSQL connection to Immich
PSQL_HOST=localhost
PSQL_PORT=5432
PSQL_DB=immich
PSQL_USER=postgres
PSQL_PASS=postgres
# For different-host setup:
# You must change PSQL_HOST to the IP address of your Immich server
#
# Example:
# Immich running on 192.168.0.100
# Deduper running on 192.168.0.200
# Change localhost above to 192.168.0.100
#====================================
# Optional Settings
#====================================
# Force CPU mode (disable GPU acceleration)
#ForceCpu=True
# Offline mode for air-gapped environments (skips version check and Immich logic verification)
#OFFLINE=True