From df1076a9e3e8bae05d9027215722e3606b990e8a Mon Sep 17 00:00:00 2001 From: Juhyung Park Date: Thu, 17 Oct 2024 13:26:56 +0900 Subject: [PATCH] Release v1.118.2 Signed-off-by: Juhyung Park --- README.md | 2 +- immich-microservices.service | 23 ----------------------- immich.service | 3 +-- install.sh | 2 +- 4 files changed, 3 insertions(+), 27 deletions(-) delete mode 100644 immich-microservices.service diff --git a/README.md b/README.md index 782de38..2e53e6b 100644 --- a/README.md +++ b/README.md @@ -147,7 +147,7 @@ In summary, the `install.sh` script does the following: ## Done! -Your Immich installation should be running at 3001 port, listening from localhost (127.0.0.1). +Your Immich installation should be running at 2283 port, listening from localhost (127.0.0.1). Immich will additionally use localhost's 3003 ports. diff --git a/immich-microservices.service b/immich-microservices.service deleted file mode 100644 index 71a06cb..0000000 --- a/immich-microservices.service +++ /dev/null @@ -1,23 +0,0 @@ -[Unit] -Description=immich microservices -Documentation=https://github.com/immich-app/immich -Requires=redis-server.service -Requires=postgresql.service - -[Service] -User=immich -Group=immich -Type=simple -Restart=on-failure -UMask=0077 - -WorkingDirectory=/var/lib/immich/app -EnvironmentFile=/var/lib/immich/env -ExecStart=node /var/lib/immich/app/dist/main microservices - -SyslogIdentifier=immich-microservices -StandardOutput=append:/var/log/immich/immich-microservices.log -StandardError=append:/var/log/immich/immich-microservices.log - -[Install] -WantedBy=multi-user.target diff --git a/immich.service b/immich.service index 8f642c1..3b1b1a7 100644 --- a/immich.service +++ b/immich.service @@ -4,7 +4,6 @@ Documentation=https://github.com/immich-app/immich Requires=redis-server.service Requires=postgresql.service Requires=immich-machine-learning.service -Requires=immich-microservices.service [Service] User=immich @@ -15,7 +14,7 @@ UMask=0077 WorkingDirectory=/var/lib/immich/app EnvironmentFile=/var/lib/immich/env -ExecStart=node /var/lib/immich/app/dist/main immich +ExecStart=node /var/lib/immich/app/dist/main SyslogIdentifier=immich StandardOutput=append:/var/log/immich/immich.log diff --git a/install.sh b/install.sh index 7e7f414..0f7464a 100755 --- a/install.sh +++ b/install.sh @@ -2,7 +2,7 @@ set -xeuo pipefail -REV=v1.117.0 +REV=v1.118.2 IMMICH_PATH=/var/lib/immich APP=$IMMICH_PATH/app