I’ve tried GetHomepage and while I’ve configured most of it I’ve had a few troubles due to the instructions being very incomplete and confusing.
The one problem that eluded me was setting paperlessngx widget. Worth nothing that, unlike the other services, paperlessngx is running on docker-compose on my server. While the widget detects the service, it never gets any information
Eventually it just gives an API error
# services.yaml (just the relevant part)
- Paperless-ngx:
href: http://<myserverhost:port>
description: Document Management System
icon: https://static-00.iconduck.com/assets.00/paperless-icon-426x512-eoik3emb.png
server: paperless
widget:
type: paperlessngx
url: http://<local-ip:port>
token: <token-configured-inside-paperless>
#docker.yaml
paperless:
host: <local-ip>
port: <port>
I’m out of ideas. Unfortunately the only instructions are on the site and they aren’t easy to follow if you’re not already familiarized with docker.
Where is paperless in relation to homepage? For me i have both of them in the same docker host and same docker network on that host and with that i only need to set the paperless container name in the widget. If paperless is on another machine make sure there is no firewall blocking the port number.
They are both a docker-compose on the same machine.
Then you should be able to do like I said and it might solve whatever is happening. I also have both homepage and paperless in the same docker-compose file. If you set the container name for each container then you can just reference that in homepage widgets. For example here is my homepage and paperless:
so both have
conatiner_name
set to the same string as the service name. And in my homepage widgets I just use the container name in the URL, example:This only works if they are in the same docker network. If you don’t explicitly set the network for the containers and they are in the same compose file then they should be in the same network.