Replies: 4 comments 1 reply
|
|
Thanks for your reply. Here's the current docker-compose.yml, which works. services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
ports:
- 80:3000
# - 3000:3000
volumes:
- ./config:/app/config # Make sure your local config directory exists
- /var/run/docker.sock:/var/run/docker.sock:ro # (optional) For docker integrations
restart: unless-stopped
environment:
HOMEPAGE_ALLOWED_HOSTS: 192.168.0.10
# HOMEPAGE_ALLOWED_HOSTS: gethomepage.devoutput of docker exec -it homepage env: and yes, I recreated the container. Also tried with --force-recreate, which didn't help at first. |
|
Good morning. Despite this, I cannot connect from the mentioned IP. |
|
This discussion has been automatically locked since there has not been any recent activity after it was closed. Please open a new discussion for related concerns. See our contributing guidelines for more details. |
Uh oh!
There was an error while loading. Please reload this page.
Description
Sorry, this is really frustrating and the answers provided here didn't help me yet.
I'm running homepage on a raspberry using docker compose.
My docker compose:
and the log is full of:
Host validation failed for: 192.168.0.10. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host.no matter which variant with/without http(s) and or port number I have tried.
homepage version
v1.0.3
Installation method
Docker
Configuration
No response
Container Logs
No response
Browser Logs
No response
Troubleshooting
I didn't find any relevant information for the allowed hosts problem in the troubleshooting guide.
All reactions