22 Commits

Author SHA1 Message Date
b72354ecb3 Update immich to v2.3.1 2025-11-20 08:01:56 +00:00
9db8fba8ca Update immich to v2.2.3 2025-11-05 16:01:48 +00:00
a30752c014 Change docker tag of valkey to full Semver, upgrade vectorchord to 0.4.3
Current vectorcord is 0.5.3, but documentation states "The current accepted range for VectorChord is >= 0.3.0, < 0.5.0."
2025-11-05 16:13:00 +01:00
03f3af28b4 Update immich to v2 2025-11-05 16:12:53 +01:00
39c05ff786 Change upload path
Changing the upload path to /data according to the changelog for 1.137.0 (https://github.com/immich-app/immich/releases/tag/v1.137.0)

According to the pull request (https://github.com/immich-app/immich/pull/20367), "Users are not required to make this change, but we do recommend it."
2025-11-05 14:40:15 +00:00
8e06c89b87 Update immich to v1.144.1 2025-10-01 00:02:12 +00:00
f1d7ebed58 Update immich to v1.143.1 2025-09-24 00:01:37 +00:00
2f1e8c4371 Update immich to v1.143.0 2025-09-23 00:01:40 +00:00
18efc8275b Update immich to v1.142.1 2025-09-16 16:02:47 +00:00
e09ba56abe Update immich to v1.142.0 2025-09-13 00:01:55 +00:00
3e22f01396 Update immich to v1.138.1 2025-08-19 00:01:51 +00:00
e0977d709f Update immich to v1.138.0 2025-08-15 16:34:45 +00:00
7097473515 Update immich to v1.137.3 2025-08-01 16:02:25 +00:00
0698a2a799 Update immich to v1.136.0 2025-07-25 00:01:33 +00:00
34095c7771 Update immich to v1.135.3 2025-06-21 00:01:18 +00:00
7eb5c75e76 Update immich to v1.135.2 2025-06-20 16:01:18 +00:00
09f05e2564 Update immich to v1.135.1 2025-06-20 00:01:33 +00:00
8d67675382 Update immich to v1.135.0 2025-06-19 00:04:12 +00:00
1d4cff2abf Update immich to v1.134.0 2025-05-28 00:02:56 +00:00
cc8fb5495e Upgrade Postgres from 14 to 17 (#8) 2025-05-24 10:39:55 +00:00
17a992a3b6 Postgres: remove pgvecto.rs & explicitly state pgvector version
pgvecto.rs only needed to be available during migration
2025-05-24 12:04:13 +02:00
938f0c00c6 Add matchPackageNames rule for postgres 2025-05-24 11:52:57 +02:00
2 changed files with 16 additions and 13 deletions

View File

@@ -2,7 +2,7 @@ name: immich
services:
server:
image: ghcr.io/immich-app/immich-server:v1.133.1
image: ghcr.io/immich-app/immich-server:v2.3.1
container_name: immich_server
# extends:
# file: hwaccel.transcoding.yml
@@ -10,12 +10,12 @@ services:
user: 10002:10002
depends_on:
- redis
- db
- db_pg17
restart: unless-stopped
healthcheck:
disable: false
volumes:
- photos:/usr/src/app/upload
- photos:/data
- /etc/localtime:/etc/localtime:ro
#ports:
#- 2283:2283
@@ -23,7 +23,7 @@ services:
- internal
- proxy
environment:
DB_HOSTNAME: db
DB_HOSTNAME: db_pg17
DB_DATABASE_NAME_FILE: /run/secrets/db_name
DB_USERNAME_FILE: /run/secrets/db_user
DB_PASSWORD_FILE: /run/secrets/db_pass
@@ -31,12 +31,11 @@ services:
- db_name
- db_user
- db_pass
machine-learning:
# For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag.
# Example tag: ${IMMICH_VERSION:-release}-cuda
image: ghcr.io/immich-app/immich-machine-learning:v1.133.1
image: ghcr.io/immich-app/immich-machine-learning:v2.3.1
container_name: immich_machine_learning
# extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
# file: hwaccel.ml.yml
@@ -51,16 +50,16 @@ services:
redis:
container_name: immich_redis
image: docker.io/valkey/valkey:8-bookworm@sha256:ff21bc0f8194dc9c105b769aeabf9585fea6a8ed649c0781caeac5cb3c247884
image: docker.io/valkey/valkey:8.1.4
restart: unless-stopped
healthcheck:
test: redis-cli ping || exit 1
networks:
- internal
db:
image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0-pgvectors0.2.0
container_name: immich_db_pg14
db_pg17:
image: ghcr.io/immich-app/postgres:17-vectorchord0.4.3
container_name: immich_db_pg17
restart: unless-stopped
healthcheck:
test: [ CMD-SHELL,
@@ -73,7 +72,7 @@ services:
start_interval: 30s
start_period: 5m
volumes:
- db:/var/lib/postgresql/data
- db_pg17:/var/lib/postgresql/data
networks:
- internal
environment:
@@ -91,8 +90,8 @@ services:
volumes:
model-cache:
name: immich_model_cache
db:
name: immich_db
db_pg17:
name: immich_db_pg17
photos:
name: immich_photos
driver_opts:

View File

@@ -10,6 +10,10 @@
"matchPackageNames": ["/immich-app/"],
"groupName": "immich"
},
{
"matchPackageNames": ["/postgres/"],
"groupName": "database"
},
{
"matchPackageNames": "docker.io/valkey/valkey",
"enabled": false