April 22, 20242 yr Hello, I've been having this issue for 1-2 months now My docker img keeps growing, last time this happened I erased all my containers and increased the size to like 40gb of the image I understood the issue is with immich container somehow, thus yesterday I removed the unraid app of immich and went with the compose file since some people rightly said you have full control and is more supported in this way, yet I reached 100% usage I m desperate now since reaching 100% kills the immich jobs and is really frustrating Any help would be appreciated thank you all --- version: "2.1" services: immich: image: ghcr.io/imagegenius/immich:latest container_name: immich environment: - PUID=99 - PGID=100 - UMASK=022 - TZ=Etc/UTC - DB_HOSTNAME=postgres_db - DB_USERNAME=postgres - DB_PASSWORD=postgres - DB_DATABASE_NAME=immich - REDIS_HOSTNAME=redis - DB_PORT=5432 #optional - REDIS_PORT=6379 #optional - REDIS_PASSWORD= #optional - MACHINE_LEARNING_GPU_ACCELERATION= #optional - MACHINE_LEARNING_WORKERS=1 #optional - MACHINE_LEARNING_WORKER_TIMEOUT=120 #optional volumes: - /mnt/user/appdata/immich:/config - /mnt/user/immich_library:/photos/library - /mnt/user/immich_thumbs:/photos/thumbs - /mnt/user/immich_encoded_video:/photos/encoded-video - /mnt/user:/import:ro #optional ports: - 8080:8080 restart: unless-stopped devices: - "/dev/dri/card0:/dev/dri/card0" - "/dev/dri/renderD128:/dev/dri/renderD128" networks: br0: ipv4_address: 10.5.1.14 # This container requires an external application to be run separately to be run separately. # By default, ports for the databases are opened, be careful when deploying it # Redis: redis: image: redis ports: - 6379:6379 container_name: redis networks: br0: ipv4_address: 10.5.1.13 # PostgreSQL 14: postgres_db: image: tensorchord/pgvecto-rs:pg14-v0.2.0 ports: - 5432:5432 container_name: postgres14 environment: - PUID=99 - PGID=100 - UMASK=022 - POSTGRES_USER=postgres - POSTGRES_PASSWORD=postgres - POSTGRES_DB=immich volumes: - /mnt/user/appdata/postgres_immich:/var/lib/postgresql/data networks: br0: ipv4_address: 10.5.1.12 networks: br0: external: true name: br0 homedata-diagnostics-20240422-0835.zip
April 22, 20242 yr Community Expert 1) You have no mapping for the "upload" folder, that's probably it 2) You've made several separate shares for it, is it intended? 3) You're giving access to the entire server as "import" directory, doesn't seem wise
April 22, 20242 yr Author 8 hours ago, Kilrah said: 1) You have no mapping for the "upload" folder, that's probably it 2) You've made several separate shares for it, is it intended? 3) You're giving access to the entire server as "import" directory, doesn't seem wise Hello, thank you for the hints 1) By checking here and here I do not understand which folder do you refer as "upload" folder, I see "/photos", I must have missed this folder but cant even find docs about it 2) Is a well known approach solved in a PR on GH that allows you as example to keep thumbs on a ssd thus not spinning the drives 3) i know right, i had some external libs to move in with immich CLI, will remove it after, for now is read only thank you Edited April 22, 20242 yr by mich2k
April 22, 20242 yr Author Ok, I feel really fool by having missed that folder during the mappings! I followed the PR which split the /library (or /photos in my case) in 3 volumes and did not mention the upload one Thank you again for real Edited April 22, 20242 yr by mich2k
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.