Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong order when stacking photos. #16250

Open
2 of 3 tasks
PaulEins opened this issue Feb 21, 2025 · 1 comment · May be fixed by #16346
Open
2 of 3 tasks

Wrong order when stacking photos. #16250

PaulEins opened this issue Feb 21, 2025 · 1 comment · May be fixed by #16346

Comments

@PaulEins
Copy link

The bug

Stacking photos messes up the order. But why? It's not because of the order in which they are selected.

Subsequent changes are also not possible.

And they are not sorted by date either. I have not recognized the logic behind this.

With a recipe where I have noted every step, I can't look it up because then a completely different photo appears -.-

Image

The OS that Immich Server is running on

Synology Docker

Version of Immich Server

new

Version of Immich Mobile App

new

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

services:
  immich-redis:
    image: redis
    container_name: Immich-REDIS
    hostname: immich-redis
    security_opt:
      - no-new-privileges:true
    healthcheck:
      test: ["CMD-SHELL", "redis-cli ping || exit 1"]
    user: 1026:100
    environment:
      - TZ=Europe/Berlin
    volumes:
      - /volume2/docker2/immich/redis:/data:rw
    restart: on-failure:5

  immich-db:
    image: tensorchord/pgvecto-rs:pg16-v0.2.0
    container_name: Immich-DB
    hostname: immich-db
    security_opt:
      - no-new-privileges:true
    healthcheck:
      test: ["CMD", "pg_isready", "-q", "-d", "immich", "-U", "immichuser"]
      interval: 10s
      timeout: 5s
      retries: 5
    volumes:
      - /volume2/docker2/immich/db:/var/lib/postgresql/data:rw
    environment:
      - TZ=Europe/Berlin
      - POSTGRES_DB=immich
      - POSTGRES_USER=immichuser
      - POSTGRES_PASSWORD=newimmich88pw
    restart: on-failure:5

  immich-server:
    image: ghcr.io/immich-app/immich-server:release
    container_name: Immich-SERVER
    hostname: immich-server
    user: 1026:100
    security_opt:
      - no-new-privileges:true
    env_file:
      - stack.env
    ports:
      - 8212:2283
    volumes:
      - /volume2/docker2/immich/upload:/usr/src/app/upload:rw
    restart: on-failure:5
    devices: # selber hinzugefügt wegen iGPu, erstmal weglassen.
      - /dev/dri:/dev/dri # selber hinzugefügt wegen iGPu , sonst loeschen
    group_add: # das auch neu, soll mit dazu zu dem darüberliegenden.
      - 937  # das gehört auch dazu.
    depends_on:
      immich-redis:
        condition: service_healthy
      immich-db:
        condition: service_started

  immich-machine-learning:
    image: ghcr.io/immich-app/immich-machine-learning:release
    container_name: Immich-LEARNING
    hostname: immich-machine-learning
    user: 1026:100
    security_opt:
      - no-new-privileges:true
    env_file:
      - stack.env
    volumes:
      - /volume2/docker2/immich/upload:/usr/src/app/upload:rw
      - /volume2/docker2/immich/cache:/cache:rw
      - /volume2/docker2/immich/matplotlib:/matplotlib:rw
    environment:
      - MPLCONFIGDIR=/matplotlib
    restart: on-failure:5
    depends_on:
      immich-db:
        condition: service_started

Your .env content

i dont have

Reproduction steps

...

Relevant log output

Additional information

No response

@Etienne-bdt
Copy link
Contributor

Hey, i'm currently working on it, images will be ordered by date of creation on the web version

I am still testing it on mobile for the time being before submitting changes because it behaves a bit differently

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants