All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 8s
33 lines
927 B
Bash
33 lines
927 B
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 settings
|
|
# For GPU acceleration, change to: release-cuda, release-openvino, or release-armnn
|
|
ML_IMAGE_TAG=release
|