JellySearch - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Development (https://forum.jellyfin.org/f-development) +--- Forum: Plugin Development (https://forum.jellyfin.org/f-plugin-development) +--- Thread: JellySearch (/t-jellysearch) |
RE: JellySearch - Hectik - 2024-10-06 Thanks to @dontcryforme, it is working now! Reference: https://gitlab.com/DomiStyle/jellysearch/-/issues/3 Pointed me to the right direction! I tried so many variations but kept the JELLYFIN_CONFIG_DIR in my compose file which. Just setting the /config directory to /config/data worked. Example below: Code: RE: JellySearch - domi - 2024-10-07 (2024-10-06, 03:03 PM)jennystreaming Wrote: Sorry for the kind-of-double post, but I saw someone asking pretty much the same thing as me here: https://gitlab.com/DomiStyle/jellysearch/-/issues/9 - we know what to put in Nginx Proxy Manager, but what do we put and/or remove in the Docker Compose since it includes a lot of variables that mention Traefik? Thanks for creating JellySearch, it works great on my friends' servers, just me who is a little bit slow perhaps, haha You don't need to remove anything, the Traefik labels won't do anything if Traefik is not running. If you want to clean up your compose file you can remove the entire "labels" block. RE: JellySearch - jennystreaming - 2024-10-07 (2024-10-07, 07:12 AM)domi Wrote:(2024-10-06, 03:03 PM)jennystreaming Wrote: Sorry for the kind-of-double post, but I saw someone asking pretty much the same thing as me here: https://gitlab.com/DomiStyle/jellysearch/-/issues/9 - we know what to put in Nginx Proxy Manager, but what do we put and/or remove in the Docker Compose since it includes a lot of variables that mention Traefik? Thanks for creating JellySearch, it works great on my friends' servers, just me who is a little bit slow perhaps, haha Thank you domi, I will try it out right away, and thank you once again for JellySearch! RE: JellySearch - WheelFire - 2024-10-11 Does anyone know how to set this up with Caddy? As far as I know I did everything correct (meilisearch and jellysearch can access the jellyfin database and can talk to each other) but when I search for something in Jellyfin, it returns nothing. If I look at the Caddy logs I see an error that says: "connect: connection refused" and then "aborting with incomplete response" when I close Jellyfin. This is what my caddyfile looks like now: Code: jellyfin.domain.com { also my docker compose file looks like this: Code: services: I have Jellyfin running as a container edit: also I see an error in Jellysearch's logs where it says: "An unhandled exception was thrown by the application." followed by "...Name or service not known (jellyfin:8096)" RE: JellySearch - domi - 2024-10-12 (2024-10-11, 02:02 PM)WheelFire Wrote: also I see an error in Jellysearch's logs where it says: "An unhandled exception was thrown by the application." followed by "...Name or service not known (jellyfin:8096)" Did you add Jellysearch to the same docker-compose file as your Jellyfin instance? It won't be able to resolve "jellyfin" otherwise. RE: JellySearch - WheelFire - 2024-10-12 (2024-10-12, 08:47 AM)domi Wrote:(2024-10-11, 02:02 PM)WheelFire Wrote: also I see an error in Jellysearch's logs where it says: "An unhandled exception was thrown by the application." followed by "...Name or service not known (jellyfin:8096)" No, I have Jellyfin running as a container in UnRaid. Is it still possible to then link them somehow? edit: I got it to work! I used this plugin to convert my container to docker compose: https://www.reddit.com/r/unRAID/comments/wiohz9/composerize_plugin_for_unraid/ For anyone with the same issue: make sure that Jellyfin, Jellysearch and Meilisearch are all on the same network and that the ports are defined in the docker compose file Thank you so much for helping me, it works great! I still get the caddy connection refused error tho (it still works so I think it doesn't matter?) RE: JellySearch - vbs - 2024-10-12 Man, this is so great. I could to set it up within 10 minutes because I happened to have docker and traefik running already anyway, and it works great! 1000 thanks for this! RE: JellySearch - need4swede - 2024-10-15 Would love to try this, but I am running Jellyfin on bare metal (Windows). Anyone know of a way to get this working? RE: JellySearch - Druidblack - 2024-11-16 delete RE: JellySearch - Druidblack - 2024-11-17 (2024-10-15, 04:48 PM)need4swede Wrote: Would love to try this, but I am running Jellyfin on bare metal (Windows). https://github.com/arnesacnussem/jellyfin-plugin-meilisearch |