ElectricEel Apps issues

Hello Community,

I moved from 24.04 to 24.10. The apps migration script only did one of the apps (midclt call -job k8s_to_docker.migrate tank’). It started promising but only did something for the app ‘tailscale’ and that failed to deploy.

So started reinstalling all my apps again and configuring them but got stuck on ‘jellyfin’. I found that ‘/usr/lib/jellyfin-ffmpeg’ does not exist anymore in ElectricEel???
I need to setup my jellyfin Intel QuickSync hardware acceleration using this command:
‘/usr/lib/jellyfin-ffmpeg/vainfo --display drm --device /dev/dri/renderD128’
The new docker apps are stored in ‘/mnt/.ix-apps/docker/’ and there are links in these new docker containers to ‘/usr/lib/jellyfin-ffmpeg’ but this file location does not exist anymore?!
So where did it go, or is this a bug?

Application ‘calibre’ is not in the catalog would like to have it because I frequently use it…

Added Calibre as a custom app, which is actually pretty simple, just add:

services:
calibre:
container_name: calibre
environment:
- TZ=Europe/Amsterdam
image: lscr.io/linuxserver/calibre:latest
ports:
- ‘8080:8080’
- ‘8181:8181’
- ‘8081:8081’
security_opt:
- seccomp:unconfined
volumes:
- “Host server calibre library”:/config/books

When you start up calibre on port 8080 the initial configuration starts, where you have to select your library. Here elect the ‘books’ folder in /config created ins theelast step of the yaml.

Did /usr/lib/jellyfin-ffmpeg ever exist in Scale? That would be something I’d expect in the Jellyfin container, not Scale’s appliance OS.

Were the apps that didn’t migrate from Truecharts? Only iX official/community plus custom apps would migrate automatically. Guessing that’s a yes since you mentioned Calibre, which isn’t in the iX catalogue.

Like the poster above, if the app isn’t in the iX catalogue, just run your own custom app either through the app UI or custom compose yaml. Neither iX or Truecharts catalogues are using their own docker images, so you can just cut out the middleman and roll out your own compose using those same images.