-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Open
Labels
Description
The bug
Android app crashes when opening a large (200MP) image.
The OS that Immich Server is running on
Docker, on Ubuntu Server 22.04
Version of Immich Server
v1.118.2
Version of Immich Mobile App
v1.118.0
Platform with the issue
- Server
- Web
- Mobile
Your docker-compose.yml content
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
volumes:
- immich:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
env_file:
- .env
ports:
- 2283:2283
depends_on:
- immich-redis
- immich-database
restart: always
immich-machine-learning:
container_name: immich_machine_learning
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
volumes:
- /home/revilo951/docker/immich/model-cache:/cache
env_file:
- .env
restart: always
immich-redis:
container_name: immich_redis
image: redis:6.2-alpine@sha256:c5a607fb6e1bb15d32bbcf14db22787d19e428d59e31a5da67511b49bb0f1ccc
restart: always
immich-database:
container_name: immich_postgres
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
env_file:
- .env
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
DB_DATA_LOCATION: ${DB_DATA_LOCATION}
volumes:
- /home/revilo951/docker/immich/pgdata:/var/lib/postgresql/data
restart: alwaysYour .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 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=snip
# The values below this line do not need to be changed
###################################################################################
DB_HOSTNAME=immich_postgres
DB_USERNAME=postgres
DB_DATABASE_NAME=immich
DB_DATA_LOCATION=/home/revilo951/docker/immich/pgdata
REDIS_HOSTNAME=immich_redisReproduction steps
- Open mobile app
- open album
- open large image (200MP, 25MB)
profitcrash
Relevant log output
No relevant logsAdditional information
No response
aaron-iles, snorux and jgibson02apetersson
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Ready