NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support Linux v
« Previous 1 2 3 4 5 … 34 Next »
Please assist with clearer setup instructions

 
  • 0 Vote(s) - 0 Average
Please assist with clearer setup instructions
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,650
Threads: 767
Joined: Nov 2003
#21
2024-08-15, 09:56 PM
(2024-08-15, 09:53 PM)JonnyGators Wrote: The ONLY thing I"ve found that you've provided that even REFERENCES  or ACKNOWLEDGES docker compose is this:

version: '3.5'
services:
  nextpvr:
    image: nextpvr/nextpvr_amd64Confusedtable
    container_name: nextpvr
    environment:
      - PUID=1000
      - PGID=100
      - TZ=Europe/london
    ports:
      - 8866:8866

So I posted that in, and it created something - but it doesn't work.  It does nothing!
Did you notice there is a scrollbar on that sample docker compose, and you missed the few lines at the end?

Not that it matters too much. That would have been enough to get the web app running (but wouldn't have been saving your config/recordings anywhere useful)
JonnyGators
Offline

Junior Member

USA
Posts: 43
Threads: 1
Joined: Aug 2024
#22
2024-08-15, 10:01 PM
(2024-08-15, 09:49 PM)sub Wrote:
(2024-08-15, 09:43 PM)JonnyGators Wrote: This makes no sense.


I don't understand why you can't figure out how to properly setup a docker-container for this.
I just tried it here. These are the exact steps I did...

Created a c:\test directory. In that test directory, I created a docker-compose.yml, with the following in it:

Code:
version: '3.5'
services:
  nextpvr:
    image: nextpvr/nextpvr_amd64:stable
    container_name: nextpvr
    environment:
      - PUID=1000
      - PGID=100
      - TZ=Europe/london
    ports:
      - 8866:8866
      - 16891:16891/udp
    volumes:
      - d:/docker/config:/config
      - d:/docker/recordings:/recordings
      - d:/docker/buffer:/buffer
    restart: 'unless-stopped'

I then ran the following:
Code:
docker-compose up

NextPVR is now running, and I can view it in my browser at http://localhost:8866


You reference a c: drive - this is not at all anything close to doing this in OMV.

Once I paste docker compose code into dockerfiles in OMV, it just exists, as far as I know it should run.  So I don't even know where docker-compose up fits into this in my case.



No one knows how to do anything anymore, I"m surrounded by useless crap that no one can do a thing with!  All because some idiot decided that Kodi doesn't need to recognize my model of TV tuner anymore and removed the functionality.  Like we should all just throw out everything even thought it still works.


I'm sick and tired of this forced obsolecence world filled with idiots that can't make instructions.

Nothing works!@
JonnyGators
Offline

Junior Member

USA
Posts: 43
Threads: 1
Joined: Aug 2024
#23
2024-08-15, 10:02 PM
(2024-08-15, 09:55 PM)mvallevand Wrote: Are you running Docker on Intel/AMD?

Martin

Yes.
JonnyGators
Offline

Junior Member

USA
Posts: 43
Threads: 1
Joined: Aug 2024
#24
2024-08-15, 10:03 PM
(2024-08-15, 09:56 PM)sub Wrote:
(2024-08-15, 09:53 PM)JonnyGators Wrote: The ONLY thing I"ve found that you've provided that even REFERENCES  or ACKNOWLEDGES docker compose is this:

version: '3.5'
services:
  nextpvr:
    image: nextpvr/nextpvr_amd64Confusedtable
    container_name: nextpvr
    environment:
      - PUID=1000
      - PGID=100
      - TZ=Europe/london
    ports:
      - 8866:8866

So I posted that in, and it created something - but it doesn't work.  It does nothing!
Did you notice there is a scrollbar on that sample docker compose, and you missed the few lines at the end?

Not that it matters too much. That would have been enough to get the web app running (but wouldn't have been saving your config/recordings anywhere useful)

My apologies, that was a case of sloppy copy/pasting to the post.  My docker-file entry has the full text, just double checked to verify.

But still, cannot get to the web app at all, it's not there.
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 52,823
Threads: 954
Joined: May 2006
#25
2024-08-15, 10:07 PM (This post was last modified: 2024-08-15, 10:07 PM by mvallevand.)
You need to look at the many Linux example that have been posted on these forum, sub was just confirming docker-compose works.

On the Docker install link I send you does it show Docker is installed and running?

If so do your Docker folder mappings exist on your OMV setup?

How are
JonnyGators
Offline

Junior Member

USA
Posts: 43
Threads: 1
Joined: Aug 2024
#26
2024-08-15, 10:12 PM
(2024-08-15, 10:07 PM)mvallevand Wrote: You need to look at the many Linux example that have been posted on these forum, sub was just confirming docker-compose works.

On the Docker install link I send you does it show Docker is installed and running?

If so do your Docker folder mappings exist on your OMV setup?

How are

How do I translate the docker syntax you reference to docker compose syntax?

What is this line you referenced multiple times for my "legacy" device?

How do I translate said line into docker compose?
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,650
Threads: 767
Joined: Nov 2003
#27
2024-08-15, 10:14 PM
(2024-08-15, 10:01 PM)JonnyGators Wrote: You reference a c: drive - this is not at all anything close to doing this in OMV.
This is nothing to do with OMV. It's docker compose instructions. I gave a full example for windows. Here is a Linux version (exactly the same, just paths changed):

Code:
version: '3.5'
services:
  nextpvr:
    image: nextpvr/nextpvr_amd64:stable
    container_name: nextpvr
    environment:
      - PUID=1000
      - PGID=100
      - TZ=Europe/london
    ports:
      - 8866:8866
      - 16891:16891/udp
    volumes:
      - /tmp/config:/config
      - /tmp/recordings:/recordings
      - /tmp/buffer:/buffer
    restart: 'unless-stopped'

To run:
Code:
docker-compose up

If OMV needs extra steps, you'll need to work those out yourself.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,650
Threads: 767
Joined: Nov 2003
#28
2024-08-15, 10:19 PM
(2024-08-15, 10:12 PM)JonnyGators Wrote: How do I translate said line into docker compose?
With

Code:
version: '3.5'

services:
  nextpvr:
    image: nextpvr/nextpvr_amd64:stable
    container_name: nextpvr
    environment:
      - PUID=1000
      - PGID=100
      - TZ=Europe/london
      - HOST_IP=192.168.1.51  # Added environment variable
    ports:
      - 8866:8866
      - 16891:16891/udp
      - 8020-8030:8020-8030/udp  # Added UDP port range mapping
    volumes:
      - /tmp/config:/config
      - /tmp/recordings:/recordings
      - /tmp/buffer:/buffer
    restart: 'unless-stopped'

But you'd need to replace that HOST_IP with your real address.
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 52,823
Threads: 954
Joined: May 2006
#29
2024-08-15, 10:21 PM (This post was last modified: 2024-08-15, 10:24 PM by mvallevand.)
I will update what sub just posted for your legacy HDHR, and using folders you don't have to configure this will get you working but will need to be modified once you under its. The information on host mode needs to be confirmed. Don't forget to change the HOST as noted in the original post I linked to.

Code:
version: '3.5'
services:
  nextpvr:
    image: nextpvr/nextpvr_amd64:stable
    container_name: nextpvr
    environment:
      - PUID=1000
      - PGID=100
      - TZ=Europe/london
      - HOST_IP=192.168.1.51
    ports:
      - 8866:8866
      - 16891:16891/udp
      - 8020-8030:8020-8030/udp
    volumes:
      - /tmp/:/config
      - /tmp/:/recordings
      - /tmp/:/buffer
    extra_hosts:
      - "host.docker.internal:host-gateway"
    restart: 'unless-stopped'
JonnyGators
Offline

Junior Member

USA
Posts: 43
Threads: 1
Joined: Aug 2024
#30
2024-08-15, 10:44 PM (This post was last modified: 2024-08-15, 10:45 PM by JonnyGators.)
(2024-08-15, 10:21 PM)mvallevand Wrote: I will update what sub just posted for your legacy HDHR, and using folders you don't have to configure this will get you working but will need to be modified once you under its.  The information on host mode needs to be confirmed.  Don't forget to change the HOST as noted in the original post I linked to.

Code:
version: '3.5'
services:
  nextpvr:
    image: nextpvr/nextpvr_amd64:stable
    container_name: nextpvr
    environment:
      - PUID=1000
      - PGID=100
      - TZ=Europe/london
      - HOST_IP=192.168.1.51
    ports:
      - 8866:8866
      - 16891:16891/udp
      - 8020-8030:8020-8030/udp
    volumes:
      - /tmp/:/config
      - /tmp/:/recordings
      - /tmp/:/buffer
    extra_hosts:
      - "host.docker.internal:host-gateway"
    restart: 'unless-stopped'

" The information on host mode needs to be confirmed. "
What does that mean, and how do I do that?

" Don't forget to change the HOST as noted in the original post I linked to."

what ip is this?  The ip of the server?  The ip of the network tuner?

- "host.docker.internal:host-gateway" - is this line literal, or is this information I should know? If this is information I need to fill in, what is it, how do I find it?
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (9): « Previous 1 2 3 4 5 … 9 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  Linux setup - Help a Windows user... prothed 18 2,369 2024-06-03, 11:08 AM
Last Post: Rod Hutchinson
  VOD setup matt77303 19 6,207 2023-08-14, 07:25 PM
Last Post: xbmcgotham
  New linux setup extras help greatwhitenorth 8 2,141 2023-01-26, 07:11 PM
Last Post: mvallevand
  Pi4 and best possible low-power setup? TheRealRoland 2 1,242 2020-11-13, 09:33 AM
Last Post: ceejayemm
  setup question DAFFY2020 18 3,774 2020-09-20, 01:35 AM
Last Post: sub
  HP mini remote setup for NextPVR/Kodi bluesight 0 890 2020-05-13, 08:06 PM
Last Post: bluesight

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode