I am using Kometa via Docker compose and am using Tiny Media Manager to get my assets in order for an existing library. I have Kometa building overlays, but it has been overwriting the posters when run. I decided to mount the existing libary folder as an asset folder in Kometa. I can shell into the kometa container and see the library files within the mounted folder, but when Kometa runs it cant seem to find any of the assets. I stopped the container and see the mount folders that were created, and inside it appears Kometa created a bunch of folders for my movies underneath the mount. I'm guessing this is why it wasn't detecting the files. How can I remedy this?
I am using mounts as I do with my other 50 containers. It works fine if I put the assets into the folder Kometa creates under the mount, but I was hoping it would just read in the existing assets from the mount.
// config.yml
asset_directory:
#- config/assets
- config/mnt/movies
- config/mnt/series
// compose
kometa:
container_name: plex_kometa
image: lscr.io/linuxserver/kometa:latest
environment:
- PUID=0
- PGID=0
- TZ=America/New_York
- KOMETA_CONFIG=/config/config.yml #optional
- KOMETA_TIME=21:00 #optional
- KOMETA_RUN=false #optional
- KOMETA_TEST=False #optional
- KOMETA_NO_MISSING=False #optional
volumes:
- /nfs/dockerdata/plex/kometa/config:/config
- /nfs/data/Torrent/Movies:/config/mnt/movies
- /nfs/data/Torrent/Series:/config/mnt/series
restart: on-failure