ImmichI
Immich13mo ago
raf

Error loading images after storage template migration

Hello everyone, I posted on Reddit and was directed from a maintainer to post here as well:
After enabling the following storage template {{y}}/{{y}}-{{MM}}/{{filename}} , I ran the "Storage template migration" job. After that, all images are show as "Error loading image".

The photos are not gone, as I can see them stored in the hard drive in the following structure: /immich-upload/library/user/[photos]. Also, the server stats shows the correct photos count.

I also ran all jobs to see if it would fix it, but no success.

Anyone would have an idea what is going on and what I should do to solve this?

Details:
Immich version: 1.123.0
Installation: Docker compose in Debian server
Directory mounted from OMV NAS as SMB/CIFS

.env file:
UPLOAD_LOCATION=/mnt/nas/photos/immich-upload
DB_DATA_LOCATION=./data/pgdata
IMMICH_VERSION=v1.123.0
DB_PASSWORD=[redacted]
DB_USERNAME=[redacted]
DB_DATABASE_NAME=[redacted]


Docker compose:
name: immich
services:
  immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - .env
    ports:
      - 3007:2283
    depends_on:
      - redis
      - database
    restart: always
    healthcheck:
      disable: false
image.png
image.png
Was this page helpful?