#Immich does not actually delete files in an external library?

1 messages · Page 1 of 1 (latest)

empty harbor
#

Ive imported a folder with photos into immich, and then i delete some of them, emptied the trash, and then ran the "remove offline files" job on the external library.

But when i rescan the library the deleted photos returned. Is this expected behavior?

dusty hullBOT
#

:wave: Hey @empty harbor,

Thanks for reaching out to us. Please follow the recommended actions below; this will help us be more effective in our support effort and leave more time for building Immich immich.

References

Checklist

  1. :ballot_box_with_check: I have verified I'm on the latest release(note that mobile app releases may take some time).
  2. :ballot_box_with_check: I have read applicable release notes.
  3. :ballot_box_with_check: I have reviewed the FAQs for known issues.
  4. :ballot_box_with_check: I have reviewed Github for known issues.
  5. :ballot_box_with_check: I have tried accessing Immich via local ip (without a custom reverse proxy).
  6. :ballot_box_with_check: I have uploaded the relevant logs, docker compose, and .env files, making sure to use code formatting.
  7. :ballot_box_with_check: I have tried an incognito window, disabled extensions, cleared mobile app cache, logged out and back in, different browsers, etc. as applicable

(an item can be marked as "complete" by reacting with the appropriate number)

If this ticket can be closed you can use the /close command, and re-open it later if needed.

twilit blade
#

You should be able to delete. Can you post your compose file?

empty harbor
#

upload failed, ill paste it in text (1/2)

#
# 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: immich

services:
  immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    extends:
      file: hwaccel.transcoding.yml
      service: nvenc #cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
    volumes:
      # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
      - ${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
      - /mnt/superpool/memories/immich_data/ALL_DATA:/mnt/superpool/memories/immich_data/ALL_DATA:ro
    env_file:
      - .env
    ports:
      - 2283:3001
    depends_on:
      - redis
      - database
    restart: always
    healthcheck:
      disable: false
twilit blade
#

Your external library is moutned as read only

empty harbor
#

does :ro not set it to be delete-able?

twilit blade
#

RO = Read only. AKA the container can't modify

empty harbor
#

oooooo

#

here i was thinking it was a greek symbol lol

twilit blade
#

Haha. No no, you can keep localtime as RO, but if you would like to modify the external lib you should remove :ro

empty harbor
#

that absolutly worked. thank you so much!

#

ur amazing support got me to do this. keep up the amazing work!