Last active
September 20, 2024 20:58
-
-
Save mfenniak/c6f6b1cde07fc33df4d925e13f7d5afa to your computer and use it in GitHub Desktop.
NixOS configuration for Immich, based upon upstream docker-compose.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, ... }: | |
let | |
immichHost = "immich.example.com"; # TODO: put your immich domain name here | |
immichRoot = "/tank/immich"; # TODO: Tweak these to your desired storage locations | |
immichPhotos = "${immichRoot}/photos"; | |
immichAppdataRoot = "${immichRoot}/appdata"; | |
immichVersion = "release"; | |
immichExternalVolume1 = "/tank/BackupData/Google Photos/[email protected]"; # TODO: if external volumes are desired | |
postgresRoot = "${immichAppdataRoot}/pgsql"; | |
postgresPassword = "..."; # TODO: put a random password here | |
postgresUser = "immich"; | |
postgresDb = "immich"; | |
in { | |
services.nginx.virtualHosts."${immichHost}" = { | |
extraConfig = '' | |
## Per https://immich.app/docs/administration/reverse-proxy... | |
client_max_body_size 50000M; | |
''; | |
forceSSL = true; | |
enableACME = true; | |
locations."/" = { | |
proxyPass = "http://127.0.0.1:2283"; | |
proxyWebsockets = true; | |
}; | |
}; | |
# The primary source for this configuration is the recommended docker-compose installation of immich from | |
# https://immich.app/docs/install/docker-compose, which linkes to: | |
# - https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml | |
# - https://github.com/immich-app/immich/releases/latest/download/example.env | |
# and has been transposed into nixos configuration here. Those upstream files should probably be checked | |
# for serious changes if there are any upgrade problems here. | |
# | |
# After initial deployment, these in-process configurations need to be done: | |
# - create an admin user by accessing the site | |
# - login with the admin user | |
# - set the "Machine Learning Settings" > "URL" to http://immich_machine_learning:3003 | |
virtualisation.oci-containers.containers.immich_server = { | |
image = "ghcr.io/immich-app/immich-server:${immichVersion}"; | |
ports = ["127.0.0.1:2283:3001"]; | |
extraOptions = [ | |
"--pull=newer" | |
# Force DNS resolution to only be the podman dnsname name server; by default podman provides a resolv.conf | |
# that includes both this server and the upstream system server, causing resolutions of other pod names | |
# to be inconsistent. | |
"--dns=10.88.0.1" | |
]; | |
cmd = [ "start.sh" "immich" ]; | |
environment = { | |
IMMICH_VERSION = immichVersion; | |
DB_HOSTNAME = "immich_postgres"; | |
DB_USERNAME = postgresUser; | |
DB_DATABASE_NAME = postgresDb; | |
DB_PASSWORD = postgresPassword; | |
REDIS_HOSTNAME = "immich_redis"; | |
}; | |
volumes = [ | |
"${immichPhotos}:/usr/src/app/upload" | |
"/etc/localtime:/etc/localtime:ro" | |
"${immichExternalVolume1}:${immichExternalVolume1}:ro" | |
]; | |
}; | |
virtualisation.oci-containers.containers.immich_microservices = { | |
image = "ghcr.io/immich-app/immich-server:${immichVersion}"; | |
extraOptions = [ | |
"--pull=newer" | |
# Force DNS resolution to only be the podman dnsname name server; by default podman provides a resolv.conf | |
# that includes both this server and the upstream system server, causing resolutions of other pod names | |
# to be inconsistent. | |
"--dns=10.88.0.1" | |
]; | |
cmd = [ "start.sh" "microservices" ]; | |
environment = { | |
IMMICH_VERSION = immichVersion; | |
DB_HOSTNAME = "immich_postgres"; | |
DB_USERNAME = postgresUser; | |
DB_DATABASE_NAME = postgresDb; | |
DB_PASSWORD = postgresPassword; | |
REDIS_HOSTNAME = "immich_redis"; | |
}; | |
volumes = [ | |
"${immichPhotos}:/usr/src/app/upload" | |
"/etc/localtime:/etc/localtime:ro" | |
"${immichExternalVolume1}:${immichExternalVolume1}:ro" | |
]; | |
}; | |
virtualisation.oci-containers.containers.immich_machine_learning = { | |
image = "ghcr.io/immich-app/immich-machine-learning:${immichVersion}"; | |
extraOptions = ["--pull=newer"]; | |
environment = { | |
IMMICH_VERSION = immichVersion; | |
}; | |
volumes = [ | |
"${immichAppdataRoot}/model-cache:/cache" | |
]; | |
}; | |
virtualisation.oci-containers.containers.immich_redis = { | |
image = "redis:6.2-alpine@sha256:80cc8518800438c684a53ed829c621c94afd1087aaeb59b0d4343ed3e7bcf6c5"; | |
}; | |
virtualisation.oci-containers.containers.immich_postgres = { | |
image = "tensorchord/pgvecto-rs:pg14-v0.1.11"; | |
environment = { | |
POSTGRES_PASSWORD = postgresPassword; | |
POSTGRES_USER = postgresUser; | |
POSTGRES_DB = postgresDb; | |
}; | |
volumes = [ | |
"${postgresRoot}:/var/lib/postgresql/data" | |
]; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment