Immich not showing up on port #4949

Closed
opened 2026-02-05 11:00:39 +03:00 by OVERLORD · 3 comments
Owner

Originally created by @Tiypoh on GitHub (Dec 15, 2024).

The bug

I recently fried my server mobo so I switched to another system, and since I switched I havent been able to access my original immich install on web or mobile. My original install is on a separate 4TB HDD that used to be my main drive, now I've got an SSD as my main drive, and on the old system I managed to still boot off the SSD and run it on the HDD, but now on the new system it wont show up on the port even though it doesnt show any errors when starting. I tried making a new install on the SSD and it showed up, but then I tried pointing it to the old library and postgres folders and it stopped working.

Is there anything I can do to save everything without going through the backup and restore process? I feel like I should be able to just use the existing folders right?

The OS that Immich Server is running on

Debian Latest

Version of Immich Server

Latest

Version of Immich Mobile App

Latest

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

#
# WARNING: Make sure to use the docker-compose.yml of the current release:
#
# https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml
#
# The compose file on main may not be compatible with the latest release.
#

name: immich

services:
  immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    # extends:
    #   file: hwaccel.transcoding.yml
    #   service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
    volumes:
      # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - .env
    ports:
      - 2283:3001
    depends_on:
      - redis
      - database
    restart: always
    healthcheck:
      disable: false

  immich-machine-learning:
    container_name: immich_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:${IMMICH_VERSION:-release}
    # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
    #   file: hwaccel.ml.yml
    #   service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable
    volumes:
      - model-cache:/cache
    env_file:
      - .env
    restart: always
    healthcheck:
      disable: false

  redis:
    container_name: immich_redis
    image: docker.io/redis:6.2-alpine@sha256:e3b17ba9479deec4b7d1eeec1548a253acc5374d68d3b27937fcfe4df8d18c7e
    healthcheck:
      test: redis-cli ping || exit 1
    restart: always

  database:
    container_name: immich_postgres
    image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      POSTGRES_INITDB_ARGS: '--data-checksums'
    volumes:
      # Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
      - ${DB_DATA_LOCATION}:/var/lib/postgresql/data
    healthcheck:
      test: pg_isready --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' || exit 1; Chksum="$$(psql --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1
      interval: 5m
      start_interval: 30s
      start_period: 5m
    command: ["postgres", "-c", "shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "logging_collector=on", "-c", "max_wal_size=2GB", "-c", "shared_buffers=512MB", "-c", "wal_compression=on"]
    restart: always

volumes:
  model-cache:

Your .env content

# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables

# The location where your uploaded files are stored
UPLOAD_LOCATION=./library
# The location where your database files are stored
DB_DATA_LOCATION=./postgres

# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
# TZ=Etc/UTC

# The Immich version to use. You can pin this to a specific version like "v1.71.0"
IMMICH_VERSION=release

# Connection secret for postgres. You should change it to a random password
# Please use only the characters `A-Za-z0-9`, without special characters or spaces
DB_PASSWORD=KSebring314

# The values below this line do not need to be changed
###################################################################################
DB_USERNAME=postgres
DB_DATABASE_NAME=immich

Reproduction steps

...

Relevant log output

kyle@sebringserver:/hdd/kyle/immich-app$ sudo docker compose up
[sudo] password for kyle:
[+] Running 4/0
 ✔ Container immich_server            Recreated                                                                                                      0.1s
 ✔ Container immich_machine_learning  Recreated                                                                                                      0.0s
 ✔ Container immich_redis             Recreated                                                                                                      0.0s
 ✔ Container immich_postgres          Recreated                                                                                                      0.0s
Attaching to immich_machine_learning, immich_postgres, immich_redis, immich_server
immich_postgres          |
immich_postgres          | PostgreSQL Database directory appears to contain a database; Skipping initialization
immich_postgres          |
immich_redis             | 1:C 15 Dec 2024 20:31:15.266 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
immich_redis             | 1:C 15 Dec 2024 20:31:15.267 # Redis version=6.2.14, bits=64, commit=00000000, modified=0, pid=1, just started
immich_redis             | 1:C 15 Dec 2024 20:31:15.267 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
immich_redis             | 1:M 15 Dec 2024 20:31:15.267 * monotonic clock: POSIX clock_gettime
immich_redis             | 1:M 15 Dec 2024 20:31:15.267 * Running mode=standalone, port=6379.
immich_redis             | 1:M 15 Dec 2024 20:31:15.267 # Server initialized
immich_redis             | 1:M 15 Dec 2024 20:31:15.267 # WARNING Memory overcommit must be enabled! Without it, a background save or replication may fail under low memory condition. Being disabled, it can can also cause failures without low memory condition, see https://github.com/jemalloc/jemalloc/issues/1328. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
immich_redis             | 1:M 15 Dec 2024 20:31:15.267 * Loading RDB produced by version 6.2.16
immich_redis             | 1:M 15 Dec 2024 20:31:15.267 * RDB age 21 seconds
immich_redis             | 1:M 15 Dec 2024 20:31:15.267 * RDB memory usage when created 0.78 Mb
immich_redis             | 1:M 15 Dec 2024 20:31:15.267 # Done loading RDB, keys loaded: 15, keys expired: 0.
immich_redis             | 1:M 15 Dec 2024 20:31:15.267 * DB loaded from disk: 0.000 seconds
immich_redis             | 1:M 15 Dec 2024 20:31:15.267 * Ready to accept connections
immich_postgres          | 2024-12-15 20:31:15.355 UTC [1] LOG:  redirecting log output to logging collector process
immich_postgres          | 2024-12-15 20:31:15.355 UTC [1] HINT:  Future log output will appear in directory "log".
immich_server            | Initializing Immich v1.122.3
immich_server            | Detected CPU Cores: 12
immich_machine_learning  | [12/15/24 20:31:15] INFO     Starting gunicorn 23.0.0
immich_machine_learning  | [12/15/24 20:31:15] INFO     Listening at: http://[::]:3003 (9)
immich_machine_learning  | [12/15/24 20:31:15] INFO     Using worker: app.config.CustomUvicornWorker
immich_machine_learning  | [12/15/24 20:31:15] INFO     Booting worker with pid: 10
immich_server            | Starting api worker
immich_server            | Starting microservices worker
immich_server            | (node:6) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
immich_server            | (Use `node --trace-deprecation ...` to show where the warning was created)
immich_server            | (node:16) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
immich_server            | (Use `node --trace-deprecation ...` to show where the warning was created)
immich_server            | (node:6) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
immich_server            | (Use `node --trace-deprecation ...` to show where the warning was created)
immich_server            | [Nest] 6  - 12/15/2024, 8:31:18 PM     LOG [Microservices:EventRepository] Initialized websocket server
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:EventRepository] Initialized websocket server
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:MetadataService] Bootstrapping metadata service
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:MetadataService] Initializing metadata service
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:MapRepository] Initializing metadata repository
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:MetadataService] Initialized local reverse geocoder
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:ServerService] Feature Flags: {
immich_server            |   "smartSearch": true,
immich_server            |   "facialRecognition": true,
immich_server            |   "duplicateDetection": true,
immich_server            |   "map": true,
immich_server            |   "reverseGeocoding": true,
immich_server            |   "importFaces": false,
immich_server            |   "sidecar": true,
immich_server            |   "search": true,
immich_server            |   "trash": true,
immich_server            |   "oauth": false,
immich_server            |   "oauthAutoLaunch": false,
immich_server            |   "passwordLogin": true,
immich_server            |   "configFile": false,
immich_server            |   "email": false
immich_server            | }
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:ServerService] Feature Flags: {
immich_server            |   "smartSearch": true,
immich_server            |   "facialRecognition": true,
immich_server            |   "duplicateDetection": true,
immich_server            |   "map": true,
immich_server            |   "reverseGeocoding": true,
immich_server            |   "importFaces": false,
immich_server            |   "sidecar": true,
immich_server            |   "search": true,
immich_server            |   "trash": true,
immich_server            |   "oauth": false,
immich_server            |   "oauthAutoLaunch": false,
immich_server            |   "passwordLogin": true,
immich_server            |   "configFile": false,
immich_server            |   "email": false
immich_server            | }
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:StorageService] Verifying system mount folder checks, current state: {"mountFiles":true,"mountChecks":{"thumbs":true,"upload":true,"backups":true,"library":true,"profile":true,"encoded-video":true}}
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:StorageService] Successfully verified system mount folder checks
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:StorageService] Verifying system mount folder checks, current state: {"mountFiles":true,"mountChecks":{"thumbs":true,"upload":true,"backups":true,"library":true,"profile":true,"encoded-video":true}}
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:StorageService] Successfully verified system mount folder checks
immich_machine_learning  | [12/15/24 20:31:19] INFO     Started server process [10]
immich_machine_learning  | [12/15/24 20:31:19] INFO     Waiting for application startup.
immich_machine_learning  | [12/15/24 20:31:19] INFO     Created in-memory cache with unloading after 300s
immich_machine_learning  |                              of inactivity.
immich_machine_learning  | [12/15/24 20:31:19] INFO     Initialized request thread pool with 12 threads.
immich_machine_learning  | [12/15/24 20:31:19] INFO     Application startup complete.
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:SystemConfigService] LogLevel=log (set via system config)
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:NestFactory] Starting Nest application...
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:InstanceLoader] BullModule dependencies initialized
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:InstanceLoader] OpenTelemetryModule dependencies initialized
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:InstanceLoader] TypeOrmModule dependencies initialized
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:InstanceLoader] OpenTelemetryCoreModule dependencies initialized
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:InstanceLoader] DiscoveryModule dependencies initialized
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:InstanceLoader] ClsModule dependencies initialized
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:InstanceLoader] ScheduleModule dependencies initialized
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:InstanceLoader] BullModule dependencies initialized
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:InstanceLoader] BullModule dependencies initialized
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:InstanceLoader] TypeOrmCoreModule dependencies initialized
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:InstanceLoader] TypeOrmModule dependencies initialized
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:InstanceLoader] ApiModule dependencies initialized
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] APIKeyController {/api/api-keys}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/api-keys, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/api-keys, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] ActivityController {/api/activities}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/activities, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/activities, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/activities/statistics, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/activities/:id, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] AlbumController {/api/albums}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/albums, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/albums, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/albums/statistics, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id, PATCH} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id/assets, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id/assets, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id/users, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id/user/:userId, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id/user/:userId, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] AppController {/api}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/.well-known/immich, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/custom.css, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] AssetController {/api/assets}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/assets/memory-lane, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/assets/random, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/assets/device/:deviceId, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/assets/statistics, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/assets/jobs, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/assets, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/assets, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] AssetMediaController {/api/assets}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/assets, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id/original, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id/original, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id/thumbnail, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id/video/playback, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/assets/exist, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/assets/bulk-upload-check, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] AuditController {/api/audit}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/audit/deletes, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] AuthController {/api/auth}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/auth/login, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/auth/admin-sign-up, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/auth/validateToken, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/auth/change-password, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/auth/logout, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] DownloadController {/api/download}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/download/info, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/download/archive, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] DuplicateController {/api/duplicates}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/duplicates, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] FaceController {/api/faces}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/faces, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/faces/:id, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] JobController {/api/jobs}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/jobs, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/jobs, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/jobs/:id, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] LibraryController {/api/libraries}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/libraries, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/libraries, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/validate, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/statistics, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/scan, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] MapController {/api/map}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/map/markers, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/map/reverse-geocode, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] MemoryController {/api/memories}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/memories, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/memories, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/memories/:id, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/memories/:id, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/memories/:id, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/memories/:id/assets, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/memories/:id/assets, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] NotificationController {/api/notifications}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/notifications/test-email, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/notifications/templates/:name, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] OAuthController {/api/oauth}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/oauth/mobile-redirect, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/oauth/authorize, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/oauth/callback, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/oauth/link, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/oauth/unlink, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] PartnerController {/api/partners}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/partners, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/partners/:id, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/partners/:id, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/partners/:id, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] PersonController {/api/people}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/people, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/people, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/people, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/people/:id, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/people/:id, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/people/:id/statistics, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/people/:id/thumbnail, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/people/:id/reassign, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/people/:id/merge, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] ReportController {/api/reports}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/reports, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/reports/checksum, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/reports/fix, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] SearchController {/api/search}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/search/metadata, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/search/random, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/search/smart, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/search/explore, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/search/person, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/search/places, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/search/cities, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/search/suggestions, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] ServerController {/api/server}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/server/about, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/server/storage, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/server/ping, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/server/version, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/server/version-history, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/server/features, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/server/theme, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/server/config, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/server/statistics, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/server/media-types, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/server/license, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/server/license, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/server/license, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] SessionController {/api/sessions}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/sessions, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/sessions, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/sessions/:id, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] SharedLinkController {/api/shared-links}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/shared-links, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/me, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/shared-links, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, PATCH} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id/assets, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id/assets, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] StackController {/api/stacks}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/stacks, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/stacks, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/stacks, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] SyncController {/api/sync}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/sync/full-sync, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/sync/delta-sync, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] SystemConfigController {/api/system-config}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/system-config, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/system-config/defaults, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/system-config, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/system-config/storage-template-options, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] SystemMetadataController {/api/system-metadata}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/system-metadata/admin-onboarding, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/system-metadata/admin-onboarding, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/system-metadata/reverse-geocoding-state, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] TagController {/api/tags}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/tags, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/tags, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/tags, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/tags/assets, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/tags/:id, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/tags/:id, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/tags/:id, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/tags/:id/assets, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/tags/:id/assets, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] TimelineController {/api/timeline}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/timeline/buckets, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/timeline/bucket, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] TrashController {/api/trash}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/trash/empty, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/trash/restore, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/trash/restore/assets, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] UserAdminController {/api/admin/users}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/admin/users, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/admin/users, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/preferences, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/preferences, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/restore, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] UserController {/api/users}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/users, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/users/me, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/users/me, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/users/me/preferences, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/users/me/preferences, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/users/me/license, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/users/me/license, PUT} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/users/me/license, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/users/:id, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/users/profile-image, POST} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/users/profile-image, DELETE} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/users/:id/profile-image, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RoutesResolver] ViewController {/api/view}:
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/view/folder/unique-paths, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:RouterExplorer] Mapped {/api/view/folder, GET} route
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:NestApplication] Nest application successfully started
immich_server            | [Nest] 16  - 12/15/2024, 8:31:19 PM     LOG [Api:Bootstrap] Immich Server is listening on http://[::1]:2283 [v1.122.3] [production]
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:SystemConfigService] LogLevel=log (set via system config)
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:NestFactory] Starting Nest application...
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:InstanceLoader] BullModule dependencies initialized
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:InstanceLoader] OpenTelemetryModule dependencies initialized
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:InstanceLoader] TypeOrmModule dependencies initialized
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:InstanceLoader] OpenTelemetryCoreModule dependencies initialized
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:InstanceLoader] DiscoveryModule dependencies initialized
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:InstanceLoader] ClsModule dependencies initialized
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:InstanceLoader] BullModule dependencies initialized
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:InstanceLoader] BullModule dependencies initialized
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:InstanceLoader] TypeOrmCoreModule dependencies initialized
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:InstanceLoader] TypeOrmModule dependencies initialized
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:InstanceLoader] MicroservicesModule dependencies initialized
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:NestApplication] Nest application successfully started
immich_server            | [Nest] 6  - 12/15/2024, 8:31:19 PM     LOG [Microservices:Bootstrap] Immich Microservices is running [v1.122.3] [production]

Additional information

No response

Originally created by @Tiypoh on GitHub (Dec 15, 2024). ### The bug I recently fried my server mobo so I switched to another system, and since I switched I havent been able to access my original immich install on web or mobile. My original install is on a separate 4TB HDD that used to be my main drive, now I've got an SSD as my main drive, and on the old system I managed to still boot off the SSD and run it on the HDD, but now on the new system it wont show up on the port even though it doesnt show any errors when starting. I tried making a new install on the SSD and it showed up, but then I tried pointing it to the old library and postgres folders and it stopped working. Is there anything I can do to save everything without going through the backup and restore process? I feel like I should be able to just use the existing folders right? ### The OS that Immich Server is running on Debian Latest ### Version of Immich Server Latest ### Version of Immich Mobile App Latest ### Platform with the issue - [X] Server - [X] Web - [X] Mobile ### Your docker-compose.yml content ```YAML # # WARNING: Make sure to use the docker-compose.yml of the current release: # # https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml # # The compose file on main may not be compatible with the latest release. # name: immich services: immich-server: container_name: immich_server image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} # extends: # file: hwaccel.transcoding.yml # service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding volumes: # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file - ${UPLOAD_LOCATION}:/usr/src/app/upload - /etc/localtime:/etc/localtime:ro env_file: - .env ports: - 2283:3001 depends_on: - redis - database restart: always healthcheck: disable: false immich-machine-learning: container_name: immich_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:${IMMICH_VERSION:-release} # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration # file: hwaccel.ml.yml # service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable volumes: - model-cache:/cache env_file: - .env restart: always healthcheck: disable: false redis: container_name: immich_redis image: docker.io/redis:6.2-alpine@sha256:e3b17ba9479deec4b7d1eeec1548a253acc5374d68d3b27937fcfe4df8d18c7e healthcheck: test: redis-cli ping || exit 1 restart: always database: container_name: immich_postgres image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0 environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} POSTGRES_INITDB_ARGS: '--data-checksums' volumes: # Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file - ${DB_DATA_LOCATION}:/var/lib/postgresql/data healthcheck: test: pg_isready --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' || exit 1; Chksum="$$(psql --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1 interval: 5m start_interval: 30s start_period: 5m command: ["postgres", "-c", "shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "logging_collector=on", "-c", "max_wal_size=2GB", "-c", "shared_buffers=512MB", "-c", "wal_compression=on"] restart: always volumes: model-cache: ``` ### Your .env content ```Shell # You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables # The location where your uploaded files are stored UPLOAD_LOCATION=./library # The location where your database files are stored DB_DATA_LOCATION=./postgres # To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List # TZ=Etc/UTC # The Immich version to use. You can pin this to a specific version like "v1.71.0" IMMICH_VERSION=release # Connection secret for postgres. You should change it to a random password # Please use only the characters `A-Za-z0-9`, without special characters or spaces DB_PASSWORD=KSebring314 # The values below this line do not need to be changed ################################################################################### DB_USERNAME=postgres DB_DATABASE_NAME=immich ``` ### Reproduction steps 1. 2. 3. ... ### Relevant log output ```shell kyle@sebringserver:/hdd/kyle/immich-app$ sudo docker compose up [sudo] password for kyle: [+] Running 4/0 ✔ Container immich_server Recreated 0.1s ✔ Container immich_machine_learning Recreated 0.0s ✔ Container immich_redis Recreated 0.0s ✔ Container immich_postgres Recreated 0.0s Attaching to immich_machine_learning, immich_postgres, immich_redis, immich_server immich_postgres | immich_postgres | PostgreSQL Database directory appears to contain a database; Skipping initialization immich_postgres | immich_redis | 1:C 15 Dec 2024 20:31:15.266 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo immich_redis | 1:C 15 Dec 2024 20:31:15.267 # Redis version=6.2.14, bits=64, commit=00000000, modified=0, pid=1, just started immich_redis | 1:C 15 Dec 2024 20:31:15.267 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf immich_redis | 1:M 15 Dec 2024 20:31:15.267 * monotonic clock: POSIX clock_gettime immich_redis | 1:M 15 Dec 2024 20:31:15.267 * Running mode=standalone, port=6379. immich_redis | 1:M 15 Dec 2024 20:31:15.267 # Server initialized immich_redis | 1:M 15 Dec 2024 20:31:15.267 # WARNING Memory overcommit must be enabled! Without it, a background save or replication may fail under low memory condition. Being disabled, it can can also cause failures without low memory condition, see https://github.com/jemalloc/jemalloc/issues/1328. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect. immich_redis | 1:M 15 Dec 2024 20:31:15.267 * Loading RDB produced by version 6.2.16 immich_redis | 1:M 15 Dec 2024 20:31:15.267 * RDB age 21 seconds immich_redis | 1:M 15 Dec 2024 20:31:15.267 * RDB memory usage when created 0.78 Mb immich_redis | 1:M 15 Dec 2024 20:31:15.267 # Done loading RDB, keys loaded: 15, keys expired: 0. immich_redis | 1:M 15 Dec 2024 20:31:15.267 * DB loaded from disk: 0.000 seconds immich_redis | 1:M 15 Dec 2024 20:31:15.267 * Ready to accept connections immich_postgres | 2024-12-15 20:31:15.355 UTC [1] LOG: redirecting log output to logging collector process immich_postgres | 2024-12-15 20:31:15.355 UTC [1] HINT: Future log output will appear in directory "log". immich_server | Initializing Immich v1.122.3 immich_server | Detected CPU Cores: 12 immich_machine_learning | [12/15/24 20:31:15] INFO Starting gunicorn 23.0.0 immich_machine_learning | [12/15/24 20:31:15] INFO Listening at: http://[::]:3003 (9) immich_machine_learning | [12/15/24 20:31:15] INFO Using worker: app.config.CustomUvicornWorker immich_machine_learning | [12/15/24 20:31:15] INFO Booting worker with pid: 10 immich_server | Starting api worker immich_server | Starting microservices worker immich_server | (node:6) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead. immich_server | (Use `node --trace-deprecation ...` to show where the warning was created) immich_server | (node:16) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead. immich_server | (Use `node --trace-deprecation ...` to show where the warning was created) immich_server | (node:6) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead. immich_server | (Use `node --trace-deprecation ...` to show where the warning was created) immich_server | [Nest] 6 - 12/15/2024, 8:31:18 PM LOG [Microservices:EventRepository] Initialized websocket server immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:EventRepository] Initialized websocket server immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:MetadataService] Bootstrapping metadata service immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:MetadataService] Initializing metadata service immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:MapRepository] Initializing metadata repository immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:MetadataService] Initialized local reverse geocoder immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:ServerService] Feature Flags: { immich_server | "smartSearch": true, immich_server | "facialRecognition": true, immich_server | "duplicateDetection": true, immich_server | "map": true, immich_server | "reverseGeocoding": true, immich_server | "importFaces": false, immich_server | "sidecar": true, immich_server | "search": true, immich_server | "trash": true, immich_server | "oauth": false, immich_server | "oauthAutoLaunch": false, immich_server | "passwordLogin": true, immich_server | "configFile": false, immich_server | "email": false immich_server | } immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:ServerService] Feature Flags: { immich_server | "smartSearch": true, immich_server | "facialRecognition": true, immich_server | "duplicateDetection": true, immich_server | "map": true, immich_server | "reverseGeocoding": true, immich_server | "importFaces": false, immich_server | "sidecar": true, immich_server | "search": true, immich_server | "trash": true, immich_server | "oauth": false, immich_server | "oauthAutoLaunch": false, immich_server | "passwordLogin": true, immich_server | "configFile": false, immich_server | "email": false immich_server | } immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:StorageService] Verifying system mount folder checks, current state: {"mountFiles":true,"mountChecks":{"thumbs":true,"upload":true,"backups":true,"library":true,"profile":true,"encoded-video":true}} immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:StorageService] Successfully verified system mount folder checks immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:StorageService] Verifying system mount folder checks, current state: {"mountFiles":true,"mountChecks":{"thumbs":true,"upload":true,"backups":true,"library":true,"profile":true,"encoded-video":true}} immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:StorageService] Successfully verified system mount folder checks immich_machine_learning | [12/15/24 20:31:19] INFO Started server process [10] immich_machine_learning | [12/15/24 20:31:19] INFO Waiting for application startup. immich_machine_learning | [12/15/24 20:31:19] INFO Created in-memory cache with unloading after 300s immich_machine_learning | of inactivity. immich_machine_learning | [12/15/24 20:31:19] INFO Initialized request thread pool with 12 threads. immich_machine_learning | [12/15/24 20:31:19] INFO Application startup complete. immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:SystemConfigService] LogLevel=log (set via system config) immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:NestFactory] Starting Nest application... immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:InstanceLoader] BullModule dependencies initialized immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:InstanceLoader] OpenTelemetryModule dependencies initialized immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:InstanceLoader] TypeOrmModule dependencies initialized immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:InstanceLoader] OpenTelemetryCoreModule dependencies initialized immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:InstanceLoader] DiscoveryModule dependencies initialized immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:InstanceLoader] ClsModule dependencies initialized immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:InstanceLoader] ScheduleModule dependencies initialized immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:InstanceLoader] BullModule dependencies initialized immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:InstanceLoader] BullModule dependencies initialized immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:InstanceLoader] TypeOrmCoreModule dependencies initialized immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:InstanceLoader] TypeOrmModule dependencies initialized immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:InstanceLoader] ApiModule dependencies initialized immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] APIKeyController {/api/api-keys}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/api-keys, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/api-keys, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] ActivityController {/api/activities}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/activities, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/activities, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/activities/statistics, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/activities/:id, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] AlbumController {/api/albums}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/albums, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/albums, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/albums/statistics, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/albums/:id, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/albums/:id, PATCH} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/albums/:id, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/albums/:id/assets, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/albums/:id/assets, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/albums/:id/users, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/albums/:id/user/:userId, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/albums/:id/user/:userId, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] AppController {/api}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/.well-known/immich, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/custom.css, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] AssetController {/api/assets}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/assets/memory-lane, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/assets/random, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/assets/device/:deviceId, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/assets/statistics, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/assets/jobs, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/assets, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/assets, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/assets/:id, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/assets/:id, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] AssetMediaController {/api/assets}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/assets, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/assets/:id/original, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/assets/:id/original, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/assets/:id/thumbnail, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/assets/:id/video/playback, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/assets/exist, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/assets/bulk-upload-check, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] AuditController {/api/audit}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/audit/deletes, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] AuthController {/api/auth}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/auth/login, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/auth/admin-sign-up, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/auth/validateToken, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/auth/change-password, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/auth/logout, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] DownloadController {/api/download}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/download/info, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/download/archive, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] DuplicateController {/api/duplicates}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/duplicates, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] FaceController {/api/faces}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/faces, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/faces/:id, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] JobController {/api/jobs}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/jobs, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/jobs, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/jobs/:id, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] LibraryController {/api/libraries}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/libraries, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/libraries, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/validate, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/statistics, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/scan, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] MapController {/api/map}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/map/markers, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/map/reverse-geocode, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] MemoryController {/api/memories}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/memories, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/memories, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/memories/:id, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/memories/:id, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/memories/:id, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/memories/:id/assets, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/memories/:id/assets, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] NotificationController {/api/notifications}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/notifications/test-email, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/notifications/templates/:name, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] OAuthController {/api/oauth}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/oauth/mobile-redirect, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/oauth/authorize, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/oauth/callback, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/oauth/link, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/oauth/unlink, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] PartnerController {/api/partners}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/partners, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/partners/:id, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/partners/:id, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/partners/:id, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] PersonController {/api/people}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/people, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/people, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/people, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/people/:id, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/people/:id, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/people/:id/statistics, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/people/:id/thumbnail, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/people/:id/reassign, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/people/:id/merge, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] ReportController {/api/reports}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/reports, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/reports/checksum, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/reports/fix, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] SearchController {/api/search}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/search/metadata, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/search/random, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/search/smart, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/search/explore, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/search/person, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/search/places, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/search/cities, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/search/suggestions, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] ServerController {/api/server}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/server/about, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/server/storage, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/server/ping, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/server/version, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/server/version-history, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/server/features, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/server/theme, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/server/config, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/server/statistics, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/server/media-types, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/server/license, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/server/license, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/server/license, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] SessionController {/api/sessions}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/sessions, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/sessions, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/sessions/:id, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] SharedLinkController {/api/shared-links}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/shared-links, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/shared-links/me, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/shared-links, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, PATCH} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id/assets, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id/assets, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] StackController {/api/stacks}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/stacks, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/stacks, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/stacks, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] SyncController {/api/sync}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/sync/full-sync, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/sync/delta-sync, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] SystemConfigController {/api/system-config}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/system-config, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/system-config/defaults, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/system-config, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/system-config/storage-template-options, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] SystemMetadataController {/api/system-metadata}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/system-metadata/admin-onboarding, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/system-metadata/admin-onboarding, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/system-metadata/reverse-geocoding-state, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] TagController {/api/tags}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/tags, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/tags, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/tags, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/tags/assets, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/tags/:id, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/tags/:id, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/tags/:id, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/tags/:id/assets, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/tags/:id/assets, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] TimelineController {/api/timeline}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/timeline/buckets, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/timeline/bucket, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] TrashController {/api/trash}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/trash/empty, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/trash/restore, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/trash/restore/assets, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] UserAdminController {/api/admin/users}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/admin/users, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/admin/users, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/preferences, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/preferences, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/restore, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] UserController {/api/users}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/users, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/users/me, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/users/me, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/users/me/preferences, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/users/me/preferences, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/users/me/license, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/users/me/license, PUT} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/users/me/license, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/users/:id, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/users/profile-image, POST} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/users/profile-image, DELETE} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/users/:id/profile-image, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RoutesResolver] ViewController {/api/view}: immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/view/folder/unique-paths, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:RouterExplorer] Mapped {/api/view/folder, GET} route immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:NestApplication] Nest application successfully started immich_server | [Nest] 16 - 12/15/2024, 8:31:19 PM LOG [Api:Bootstrap] Immich Server is listening on http://[::1]:2283 [v1.122.3] [production] immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:SystemConfigService] LogLevel=log (set via system config) immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:NestFactory] Starting Nest application... immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:InstanceLoader] BullModule dependencies initialized immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:InstanceLoader] OpenTelemetryModule dependencies initialized immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:InstanceLoader] TypeOrmModule dependencies initialized immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:InstanceLoader] OpenTelemetryCoreModule dependencies initialized immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:InstanceLoader] DiscoveryModule dependencies initialized immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:InstanceLoader] ClsModule dependencies initialized immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:InstanceLoader] BullModule dependencies initialized immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:InstanceLoader] BullModule dependencies initialized immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:InstanceLoader] TypeOrmCoreModule dependencies initialized immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:InstanceLoader] TypeOrmModule dependencies initialized immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:InstanceLoader] MicroservicesModule dependencies initialized immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:NestApplication] Nest application successfully started immich_server | [Nest] 6 - 12/15/2024, 8:31:19 PM LOG [Microservices:Bootstrap] Immich Microservices is running [v1.122.3] [production] ``` ### Additional information _No response_
Author
Owner

@bo0tzz commented on GitHub (Dec 15, 2024):

Your compose file is out of date. You should read the release notes before upgrading.

@bo0tzz commented on GitHub (Dec 15, 2024): Your compose file is out of date. You should read the release notes before upgrading.
Author
Owner

@Tiypoh commented on GitHub (Dec 15, 2024):

Your compose file is out of date. You should read the release notes before upgrading.

Thank you very much for the quick response! Do I just run wget -O docker-compose.yml https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml to upgrade it?

@Tiypoh commented on GitHub (Dec 15, 2024): > Your compose file is out of date. You should read the release notes before upgrading. Thank you very much for the quick response! Do I just run wget -O docker-compose.yml https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml to upgrade it?
Author
Owner

@Tiypoh commented on GitHub (Dec 15, 2024):

Got it, thank you very much! Also I just scrolled through every release since I installed it in September and I didnt see any mention to change the docker compose file.

@Tiypoh commented on GitHub (Dec 15, 2024): Got it, thank you very much! Also I just scrolled through every release since I installed it in September and I didnt see any mention to change the docker compose file.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#4949