tryffel / jellycli

Jellyfin terminal client
GNU General Public License v3.0
206 stars 8 forks source link

Trying to run via docker run gives me platform errors. #17

Open JS-E opened 3 years ago

JS-E commented 3 years ago

Really cool idea and i wanted to run this from docker on my raspberry pi but i'm getting...

WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm/v7) and no specific platform was requested.

By running this command...

docker run -it --rm --device /dev/snd:/dev/snd -v ~/jellycli-config/jellycli-conf:/root/.config tryffel/jellycli

Is there a missing tag i should be using?

tryffel commented 3 years ago

There's no official image for Arm architecture, so you will have to build one by yourself. It should be straightforward though, clone this repository (optionally checkout tag/release) on your device, cd to it and run e.g. 'docker build . -t tryffel/jellycli:arm' and see what happens. I haven't tested this combination in a while though.