Replies: 2 comments 1 reply
-
|
Great, an ENV variable And I have another thought since e.g. in my case my users only have one SSO login and don't have a password to login into Jellyfin & Seerr - they use OIDC-based login for Jellyfin (https://github.com/9p4/jellyfin-plugin-sso) and Seerr (seerr-team/seerr#1505), so they don't have credentials for any of these: Instead, an global ENV var
|
Beta Was this translation helpful? Give feedback.
-
|
Yes I saw that when I was implementing Seerr. The moment the jellyfin token can be used I will add that. I will have a look at making both the server and api key a docker variable because it does make sense in that context. Thanks for the suggestions 😄 |
Beta Was this translation helpful? Give feedback.



Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
I’d like to propose adding a
JELLYSEERR_URLenvironment variable to the Fladder Docker image, implemented in the same manner as BASE_URL. This would allow users to define a fixed Jellyseerr endpoint directly in their docker-compose.yml, instead of having to manually configure it through the Fladder settings UI after deployment.This approach would enable preconfiguration of the Jellyseerr URL at deploy time, removing the need for manual input after login. Additionally, since in most setups the same credentials are used for both Jellyfin and Jellyseerr, it would be great to offer an optional auto-configuration step: after login, the user could be prompted whether they want to reuse their Jellyfin credentials for Jellyseerr. If confirmed, the Seerr integration could be configured automatically, further streamlining the initial setup process.
Basic Example
A user deploys Fladder via Docker Compose and wants Jellyseerr to be available immediately without any manual configuration in the UI.
BASE_URL=https://jellyfin.example.comJELLYSEERR_URL=https://requests.example.comOn login:
Fladder automatically uses https://requests.example.com as the Jellyseerr endpoint. The Jellyseerr URL field in Settings is pre-filled. The user is optionally prompted whether their Jellyfin credentials should also be used for Jellyseerr.
If confirmed, the Jellyseerr integration is configured automatically without further user input.
This allows a fully functional Jellyfin + Jellyseerr setup immediately after deployment, with no post-install configuration required via Fladder Settings.
Drawbacks
Unresolved questions
No response
Implementation
Beta Was this translation helpful? Give feedback.
All reactions