linuxserver.io docker - WebGrab+Plus

  • Hi,

    I installed WebGrab+Plus from linuxserver.io and I put test configuration to WebGrab++.config.xml file.

    here is config:

    But when I start addon file guide.xml is not in /data folder.

    How I can find out what is wrong?

  • After some time guide.xml is in /data folder.

    I don't know how to connect /data/guide.xml with tvheadend (I use tvheadend from linuxserver.io)?

    You need to study a little more about docker. You have two alternatives: (1) Search with Google "How to mount a host directory in a Docker container", or (2) Search with Google "How to copy files from docker container to host"

  • Hi,

    Its alreadi mounted to host.

    Location on host:

    Code
    /storage/.kodi/userdata/addon_data/docker.linuxserver.webgrabplus/data/guide.xml

    but I don't know where is location on tvheadend for grabber to take it?

    Edited once, last by lpt2007 (March 10, 2021 at 11:05 AM).

  • Sorry, I can't answer you, I only use the official LibreELEC kodi addon tvheadend.

    You may need to look up information about tvheadend to use sockets in a way similar to:

    Using socat: cat tv.xml | socat - UNIX-CONNECT: /path/to/xmltv.sock

    Using netcat (from the nmap project): cat tv.xml | nc -w 5 -U /path/to/xmltv.sock

    Using curl: cat tv.xml | curl -d @ - -m 5 -X POST --unix-socket /path/to/xmltv.sock Google

    I don't use this and I don't know if this is supported by LibreELEC.

    Edited 2 times, last by elonesna (March 12, 2021 at 3:37 PM).