You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you stack images from an album, the images disappear, but refreshing the page brings them all back. The thumbnails do not show stacked in the album, although locating the image in the regular photos feed shows that a stack was applied.
When selecting a photo in the album to view the larger image, the stacked image selector doesn't show at the bottom.
In the mobile app, the stacks you created show multiple times (as many times as you attempted the stack when it didn't seem to work from the album) and do not display the image when pressed on.
The OS that Immich Server is running on
Windows 11, Docker
Version of Immich Server
v1.105.1
Version of Immich Mobile App
v1.105.1 build 157
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: immichservices:
immich-server:
container_name: immich_serverimage: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}command: ['start.sh', 'immich']volumes:
#- ${UPLOAD_LOCATION}:/usr/src/app/upload
- ${THUMB_LOCATION}:/usr/src/app/upload/thumbs
- ${ENCODED_VIDEO_LOCATION}:/usr/src/app/upload/encoded-video
- ${PROFILE_LOCATION}:/usr/src/app/upload/profile
- /etc/localtime:/etc/localtime:ro
- type: volumesource: photostarget: /photosvolume:
nocopy: true
- type: volumesource: privatetarget: /privatevolume:
nocopy: true
- type: volumesource: aitarget: /aivolume:
nocopy: true
- type: volumesource: videostarget: /videosvolume:
nocopy: true
- type: volumesource: familytarget: /familyvolume:
nocopy: true
- type: volumesource: uploadstarget: /usr/src/app/uploadvolume:
nocopy: trueenv_file:
- .envports:
- 2283:3001depends_on:
- redis
- databaserestart: alwaysimmich-microservices:
container_name: immich_microservicesimage: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/hardware-transcodingfile: hwaccel.transcoding.ymlservice: quicksync # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcodingcommand: ['start.sh', 'microservices']volumes:
#- ${UPLOAD_LOCATION}:/usr/src/app/upload
- ${THUMB_LOCATION}:/usr/src/app/upload/thumbs
- ${ENCODED_VIDEO_LOCATION}:/usr/src/app/upload/encoded-video
- ${PROFILE_LOCATION}:/usr/src/app/upload/profile
- /etc/localtime:/etc/localtime:ro
- type: volumesource: photostarget: /photosvolume:
nocopy: true
- type: volumesource: privatetarget: /privatevolume:
nocopy: true
- type: volumesource: aitarget: /aivolume:
nocopy: true
- type: volumesource: videostarget: /videosvolume:
nocopy: true
- type: volumesource: familytarget: /familyvolume:
nocopy: true
- type: volumesource: uploadstarget: /usr/src/app/uploadvolume:
nocopy: trueenv_file:
- .envdepends_on:
- redis
- databaserestart: alwaysimmich-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}-cudaimage: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}-cudaextends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-accelerationfile: hwaccel.ml.ymlservice: cuda # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicablevolumes:
- model-cache:/cache
- type: volumesource: photostarget: /photosvolume:
nocopy: true
- type: volumesource: privatetarget: /privatevolume:
nocopy: true
- type: volumesource: aitarget: /aivolume:
nocopy: true
- type: volumesource: videostarget: /videosvolume:
nocopy: true
- type: volumesource: familytarget: /familyvolume:
nocopy: trueenv_file:
- .envrestart: alwaysports:
- 3003:3003redis:
container_name: immich_redisimage: registry.hub.docker.com/library/redis:6.2-alpine@sha256:84882e87b54734154586e5f8abd4dce69fe7311315e2fc6d67c29614c8de2672restart: alwaysdatabase:
container_name: immich_postgresimage: registry.hub.docker.com/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}POSTGRES_USER: ${DB_USERNAME}POSTGRES_DB: ${DB_DATABASE_NAME}POSTGRES_INITDB_ARGS: '--data-checksums'volumes:
- ${DB_DATA_LOCATION}:/var/lib/postgresql/datarestart: alwayscommand: ["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"]volumes:
model-cache:
photos:
driver_opts:
type: nfso: "addr=192.168.1.10,nolock,soft,rw"device: ":/volume1/photo"private:
driver_opts:
type: nfso: "addr=192.168.1.10,nolock,soft"device: ":/volume1/private"ai:
driver_opts:
type: nfso: "addr=192.168.1.10,nolock,soft"device: ":/volume1/ai"videos:
driver_opts:
type: nfso: "addr=192.168.1.10,nolock,soft"device: ":/volume1/video"family:
driver_opts:
type: nfso: "addr=192.168.1.10,nolock,soft"device: ":/volume1/homes"uploads:
driver_opts:
type: nfso: "addr=192.168.1.10,nolock,soft"device: ":/volume1/uploads"
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=uploads
THUMB_LOCATION=./library/thumbs
ENCODED_VIDEO_LOCATION=./library/encoded-video
PROFILE_LOCATION=./library/profile
# The location where your database files are stored
DB_DATA_LOCATION=./postgres
# 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
DB_PASSWORD=
# The values below this line do not need to be changed###################################################################################
DB_USERNAME=postgres
DB_DATABASE_NAME=immich
NVIDIA_VISIBLE_DEVICES=all
MACHINE_LEARNING_WORKER_TIMEOUT=300
MACHINE_LEARNING_MODEL_TTL=600
MACHINE_LEARNING_WORKER_TIMEOUT=150
Reproduction steps
1. Go into an album in the web browser.
2. Select multiple images and then press 's' or choose 'stack' from the menu.
3. Although some images disappear, the stack icon does not show.
4. Refresh the page, all images reappear
5. Locate the image(s) in the main photo feed by clicking 'photos'in the left-hand menu.
6. Image shows with stack icon.
7. In the mobile app, go to the album.
8. Images are duplicated, but have the stack icon.
9. Press on any of the images, no photo is displayed.
Relevant log output
No response
Additional information
No response
The text was updated successfully, but these errors were encountered:
The bug
If you stack images from an album, the images disappear, but refreshing the page brings them all back. The thumbnails do not show stacked in the album, although locating the image in the regular photos feed shows that a stack was applied.
When selecting a photo in the album to view the larger image, the stacked image selector doesn't show at the bottom.
In the mobile app, the stacks you created show multiple times (as many times as you attempted the stack when it didn't seem to work from the album) and do not display the image when pressed on.
The OS that Immich Server is running on
Windows 11, Docker
Version of Immich Server
v1.105.1
Version of Immich Mobile App
v1.105.1 build 157
Platform with the issue
Your docker-compose.yml content
Your .env content
Reproduction steps
Relevant log output
No response
Additional information
No response
The text was updated successfully, but these errors were encountered: