Selfhosted
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.
Rules:
-
Be civil.
-
No spam.
-
Posts are to be related to self-hosting.
-
Don't duplicate the full text of your blog or readme if you're providing a link.
-
Submission headline should match the article title.
-
No trolling.
-
Promotion posts require active participation, with an account that is at least 30 days old. F/LOSS without a paywall has exceptions, with requirements. See the rules link for details. Tags [CBH] or [AIP] are required, see the links in Rule 8 for details.
-
AI-related discussions and AI-involved promotional posts have additional requirements for tagging, as noted in Rule 7 and the AI & Promotional Post Expanded Rules post, and find example disclosures here.
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
view the rest of the comments
That log entry is unrelated to whatever issues you're having. That's what the default
docker-compose.yamluses for health checks:The fact that it returns a 200 probably means that Invidious is properly up and running. Could you elaborate further on what you mean by "setup isn't completing"? How are you trying to connect to the web UI? Sharing your
docker-compose.yamlmight help us debug as well.Edit: I just noticed that the default compose file has the port bound to localhost:
which means you won't be able to access it from other machines inside or outside your network. You'd have to change that to
- "3000:3000"to enable access for other machines.That was my issue. Thank you very much!
To add to this, are you running docker-compose up with a -d flag?
When I got into Dockers, I got confused when the docker command would not complete (i.e. get back to bash shell after completing the command). In docker, you need to specify the "-d" flag to run it in background (i.e. separate daemon)
One more point, when @CumBroth@discuss.tchncs.de says
It should be
Ooooh, good catch. I assumed "it's been giving me the same message for over an hour" to mean that they've been monitoring the logs, not running in interactive mode. O_O
Thank You! I changed the port settings and used the "d" flag and it's working.