All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 13s
40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# Immich - Self-hosted photo and video management
|
|
# https://github.com/immich-app/immich
|
|
|
|
# Server Settings
|
|
SSH_USER="dropshell"
|
|
|
|
# Container name prefix (containers will be named immich_server, immich_redis, etc.)
|
|
CONTAINER_NAME=immich
|
|
|
|
# Immich version - use "release" for latest stable
|
|
IMMICH_VERSION=release
|
|
|
|
# Web UI port
|
|
WEB_PORT=2283
|
|
|
|
# Upload location - where photos/videos are stored
|
|
UPLOAD_LOCATION=/path/to/uploads
|
|
|
|
# Database settings
|
|
DB_DATA_LOCATION=/path/to/postgres
|
|
DB_PASSWORD=change_me_to_a_secure_password
|
|
DB_USERNAME=postgres
|
|
DB_DATABASE_NAME=immich
|
|
|
|
# Optional: Additional read-only media library paths (comma-separated)
|
|
# These will be mounted as read-only in the immich-server container
|
|
# Example: "/mnt/photos:/photos:ro,/mnt/archive:/archive:ro"
|
|
EXTERNAL_LIBRARIES=""
|
|
|
|
# Machine Learning GPU Acceleration
|
|
# Options:
|
|
# release - CPU only (default)
|
|
# release-cuda - NVIDIA GPU
|
|
# release-openvino - Intel GPU (Iris Xe, Arc)
|
|
# release-armnn - ARM GPU
|
|
ML_IMAGE_TAG=release
|
|
|
|
# Enable GPU device access (set to "true" for openvino or cuda)
|
|
ML_GPU_ENABLED=false
|