Hi Chris! Just saw your reply about the 404 and will look at the new information.
Typed this off-line and maybe explains some of the access issues:
Hi Chris!
You simply have more (a lot more! <g>) experience than I do – this is my first foray into using Docker. Probably wasn’t the best first project. 🙂
Anyway I think I have have found why I can’t access. The general installation instructions I followed are from https://www.stacksimplify.com/aws-eks/docker-basics/get-docker-image-from-docker-hub-and-run-/ – I was looking for them at TVHeadend but no luck.
So at “Step-3: Run the downloaded Docker Image & Access the Application”
• Copy the docker image name from Docker Hub
<code>docker run --name app1 -p 80:8080 -d stacksimplify/dockerintro-springboot-helloworld-rest-api:1.0.0-RELEASE
http://localhost/hello </code>
So I changed that to <code> docker run --name app1 -p 80:8080 -d lscr.io/linuxserver/tvheadend:latest </code> and the ran <code> http://localhost/tvheadend </code> which didn’t work.
Found out later ‘app1’ probably should be called ‘TVHeadend’ so swapped that in, got an error message I think about duplicate ports, so found out how to remove the ‘app1’ thing, then I remembered someone mentioning issues with upper case so installed as ‘tvheadend’.
Now, I think I found the port problem: <code>
https://docs.linuxserver.io/images/docker-tvheadend/
Host vs. Bridge
If you use IPTV, SAT>IP or HDHomeRun, you need to create the container with --net=host and remove the -p flags.
Parameters
Containers are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate <external>:<internal> respectively. For example, -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 outside the container.
</code>
So if I decipher that my
<code> docker run --name tvheadend -p 80:8080 -d lscr.io/linuxserver/tvheadend:latest </code>
needs to be removed and re-installed substituting the -p (port) numbers forrrrrrr… haven’t a clue other than 9981 for one or the other, maybe both.
...Buy Me a Coffee button?! You’re needing a “buy me aspirin” button! <joke!>