view the rest of the comments
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: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.
-
No spam posting.
-
Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.
-
Don't duplicate the full text of your blog or github here. Just post the link for folks to click.
-
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
-
No trolling.
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!
Looks cool. I have it up and running with the docker compose provided. Every time I try to create a user it says "Error creating user", and the logs say
[ERROR] [23:30:00]: Login failed. Unable to obtain cookie.
Edit: I got it working, just had to updated some of the network stuff in the docker compose. The networking in Portainer is a bit "complex".
I can't get photos to work. Oh well.
Happy that you got it working. What exactly does not work with the photos? Fell free to open a GitHub issue, if that's easier.
I'm able to save a trail without any photos, but if I try to add a photo it lets me select the photo, but saving the trail gives a toast notification in the bottom right that says "Error saving trail." The web, db, and search logs don't show any errors.
Did some really basic testing with a few images I had at hand:
might be an issue with the sizes of the files, how large are your photos?
Ah yes, sorry, the upload is currently capped at 5MB. You can change that limit in the PocketBase backend. I will add a guide to the docs.
Aha, that must be it. The photo in question is 6.7MB
having the same issue, could you give some infos what you changed in the network settings?
edit: hadn't updated the ORIGIN env correctly (only updated the port): classic case of RTFM
Mine was having some weird problem with docker, I think it must be a docker bug. Basically it put the Wanderer stuff at the very bottom of the routes (running "sudo route" on Debian lists the routes). The last entry in the routes table needs to be eth0 or the equivalent so that stuff can loop back to the beginning of the list. At least that's my understanding.
So anyway, to get around that bug/limitation I had to create a static docker network which I called "wanderer-static" using
docker network create --attachable -d bridge --subnet 172.28.0.0/16 --gateway 172.28.0.1 wanderer-static
. Choose a subnet that's not being used already.Then in the docker compose file, point everything at that network by:
Removing
Adding
And finally, pointing each service to that network. Under each service you should have:
I also had to update the ORIGIN and whatever else to
http://wanderer-static:7000
, etc.