for some reason the thumbs and encoded videos end up in the default location (upload location) instead of the locations ive specified in the compose and .env.
my docker compose contains these 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}:/data
- ${THUMB_LOCATION}:/data/thumbs
- ${ENCODED_VIDEO_LOCATION}:/data/encoded-video
- /etc/localtime:/etc/localtime:ro```
and my .env contain these:
```# The location where your uploaded files are stored
UPLOAD_LOCATION=/mnt/user/photos
# The location where your database files are stored. Network shares are not supported for the database
DB_DATA_LOCATION=/mnt/cache/appdata/postgresql/data
# The location where thumbnails are stored
THUMB_LOCATION=/mnt/cache/appdata/immich/thumbs
# The location where encoded videos are stored
ENCODED_VIDEO_LOCATION=/mnt/cache/appdata/immich/encoded-video```
and as you can see in the attached screenshot the directories (thumbs and encoded-videos) exist where it should.
and both folders has the .immich file (created by immich itself upon first start of immich after setting up the volumes), as you can see by the attached screenshot.
any suggestions on why this is happening?
.