Immich 1.133.0 Upgrade Issues from 1.132.0

I am running Immich and Immich ML on a docker-compose with a separate dedicated postgres instance as I have other services using that database server. When upgrading immich without upgrading the database server, it fails to start. If I attempt to upgrade postgres to the latest recommended container, it fails to start there as well. I have moved to valkey for cache server sometime ago even though the domain says redis. See below for more technical information.

Configuration files:

Immich compose:
services:
  immich-server:
    image: ghcr.io/immich-app/immich-server:release
    container_name: immich-server
    restart: unless-stopped
    ports:
      - 2283:2283
    volumes:
      - ${UPLOAD_PATH}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    deploy:
      resources:
        reservations:
          devices:
            - driver: nvidia
              count: 1
              capabilities:
                - gpu
                - compute
                - utility
                - video
    healthcheck:
      disable: false
    user: 1000:1000
    env_file:
      - .env
  immich-ml:
    image: ghcr.io/immich-app/immich-machine-learning:release-cuda
    container_name: immich-ml
    restart: unless-stopped
    volumes:
      - ${CACHE_PATH}:/cache
    deploy:
      resources:
        reservations:
          devices:
            - driver: nvidia
              count: 1
              capabilities:
                - gpu
                - compute
                - utility
                - video
    healthcheck:
      disable: false
    user: 1000:1000
    env_file:
      - .env

.env:
# App
UPLOAD_PATH=/mnt/media/immich
CACHE_PATH=/mnt/data/immich
TZ=US/Eastern
NVIDIA_VISIBLE_DEVICES=all
NVIDIA_DRIVER_CAPABILITIES=all

# Database
DB_USERNAME=immich
DB_PASSWORD=<change-me>
DB_DATABASE_NAME=immich
DB_HOSTNAME=postgres.apps.domain.cc
DB_PORT=5432
DB_VECTOR_EXTENSION=pgvecto.rs

# Caching
REDIS_HOSTNAME=redis.apps.domain.cc
REDIS_PORT=6379
Was this page helpful?