Jump to content

Recommended Posts

thejacer87
Posted

I've decided to give the docker container a try.

 

I tried using the installation commands:

 

`docker run -it --rm -v /usr/local/bin:/target emby/embyserver instl`
and
`
docker run -it --rm -v /etc/systemd/system:/target emby/embyserver instl service`

both seemingly install it fine, but when i run `emby-server` i get this error:

`
docker: Error response from daemon: linux runtime spec devices: error gathering device information while adding custom device "/dev/dri/by-path": not a device node.`

 

but when i run the manual docker command it worked just fine (so far)

jgnobodygramm
Posted

Thank you we see how it goes no live yet

 

Sent from my LGMS330 using Tapatalk

thejacer87
Posted (edited)

Hi, did you follow the instructions on our website?

 

https://emby.media/docker-server.html

 

Thanks !

 

yes i ran the top command, the ran the command to start it and got the error:

 

`docker: Error response from daemon: linux runtime spec devices: error gathering device information while adding custom device "/dev/dri/by-path": not a device node.`

 

but when i ran the example command shown at near the bottom of this page: https://hub.docker.com/r/emby/embyserver/ it worked

 

docker run -d --net=host -v /*your_config_location*:/config -e TZ=America/Edmonton --name=emby-server emby/embyserver
Edited by thejacer87
hurricanehrndz
Posted

 

yes i ran the top command, the ran the command to start it and got the error:

 

`docker: Error response from daemon: linux runtime spec devices: error gathering device information while adding custom device "/dev/dri/by-path": not a device node.`

 

but when i ran the example command shown at near the bottom of this page: https://hub.docker.com/r/emby/embyserver/ it worked

 

docker run -d --net=host -v /*your_config_location*:/config -e TZ=America/Edmonton --name=emby-server emby/embyserverre 

There is an issue with newer kernels and the wrapper script. It will be addressed in future releases. Starting at line 80, it should look like this in the future.

if [[ -e "/dev/dri/" ]]; then
  for dev in /dev/dri/* ; do
    if [[ ! -d $dev ]]; then
      VOLUMES+=" --device=$dev:$dev
    fi
done

jgnobodygramm
Posted

Hope I can work it out

 

Sent from my LGMS330 using Tapatalk

Posted

Hope I can work it out

 

Sent from my LGMS330 using Tapatalk

 

Hi, what do you mean by this?

thejacer87
Posted

 

There is an issue with newer kernels and the wrapper script. It will be addressed in future releases. Starting at line 80, it should look like this in the future.

if [[ -e "/dev/dri/" ]]; then
  for dev in /dev/dri/* ; do
    if [[ ! -d $dev ]]; then
      VOLUMES+=" --device=$dev:$dev
    fi
done

ok, is there a way to pull the script and modify it myself first?

 

 

or should i just stick to creating the docker myself?

hurricanehrndz
Posted

The script should be in usr local bin. It is named emby-server

 

Sent from my ONEPLUS A3000 using Tapatalk

  • Like 1
thejacer87
Posted

The script should be in usr local bin. It is named emby-server

 

Sent from my ONEPLUS A3000 using Tapatalk

 

k thanks

ill give it a go

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...