1

Services: Add dockerhub credentials

This commit is contained in:
2025-07-09 13:58:47 +02:00
parent 5ea0d6e9e3
commit 04b437d2b9
16 changed files with 244 additions and 28 deletions

View File

@ -8,6 +8,15 @@
image = "ghcr.io/immich-app/postgres:15-vectorchord0.3.0-pgvectors0.2.0";
autoStart = true;
# login = {
# # Uses DockerHub by default
# # registry = "";
#
# # DockerHub Credentials
# username = "christoph.urlacher@protonmail.com";
# passwordFile = "${config.age.secrets.dockerhub-pasword.path}";
# };
dependsOn = [];
ports = [
@ -33,6 +42,15 @@
image = "redis";
autoStart = true;
login = {
# Uses DockerHub by default
# registry = "";
# DockerHub Credentials
username = "christoph.urlacher@protonmail.com";
passwordFile = "${config.age.secrets.dockerhub-pasword.path}";
};
dependsOn = [];
ports = [
@ -52,6 +70,15 @@
image = "ghcr.io/imagegenius/immich:latest";
autoStart = true;
# login = {
# # Uses DockerHub by default
# # registry = "";
#
# # DockerHub Credentials
# username = "christoph.urlacher@protonmail.com";
# passwordFile = "${config.age.secrets.dockerhub-pasword.path}";
# };
dependsOn = [
"immich-database"
"immich-redis"