Can not install server in docker

Every time I try to install the server with this docker files. I get an error use this part channels-dvr of the file. What do I need to change it to get it to work ?

channels-dvr:
  image: fancybits/channels-dvr:latest
  container_name: channels-dvr
  network_mode: host
  ports:
    - "8089:8089"
  restart: on-failure:10
  devices:
    - /dev/dri:/dev/dri
  volumes:
    - /mnt/disk/dvr/config:/channels-dvr
    - /mnt/disk/dvr/recordings:/shares/DVR

What is the error?

Probably need to remove the devices section

The error is Property channels-dvr is not allowed

You would have to provide more details about what you are doing and where

Ok, I have an ugreen nas p4800. Intel 100 16g ram. After installing, when you click open docker, click project and put Compose configuration. That's where I'm getting there error

Your yaml is malformed. You are missing the top level services:

services:
  channels-dvr:
    image: fancybits/channels-dvr:latest
    container_name: channels-dvr
    network_mode: host
    ports:
      - "8089:8089"
    restart: on-failure:10
    devices:
      - /dev/dri:/dev/dri
    volumes:
      - /mnt/disk/dvr/config:/channels-dvr
      - /mnt/disk/dvr/recordings:/shares/DVR

1 Like

Thanks that did it

1 Like

The only did not work now it TV anywhere

1 Like

I assume you mean TVE isnt working? Did you use the TVE Docker image?

yes I did I used the from this post .

services:
  channels-dvr:
    image: fancybits/channels-dvr:latest
    container_name: channels-dvr
    network_mode: host
    ports:
      - "8089:8089"
    restart: on-failure:10
    devices:
      - /dev/dri:/dev/dri
    volumes:
      - /mnt/disk/dvr/config:/channels-dvr
      - /mnt/disk/dvr/recordings:/shares/DVR

I get this error

The TVE feature requires the fancybits/channels-dvr:tve docker container

You need to change this line:

To this:

image: fancybits/channels-dvr:tve