I’m trying to connect my Home assistant to the App.
When using the pip install method I can connect.
When using docker I get the following Error in the logfile:
2020-01-28 14:53:43 ERROR (MainThread) [homeassistant.components.auth.indieauth] Timeout while looking up redirect_uri https://home-assistant.io/android
2020-01-28 14:53:43 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 192.168.2.104
The App says: "Invalid client id or redirect uri
My config.yaml looks pretty much the same on both instances:
# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
# http:
# base_url: example.duckdns.org:8123
# Text to speech
tts:
- platform: google_translate
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
tplink:
websocket_api:
mobile_app:
discovery:
The docker-compose.yml is:
version: '3'
services:
homeassistant:
container_name: home-assistant
image: homeassistant/home-assistant:stable
restart: always
volumes:
- ./homeassistant:/config
environment:
- TZ=Europe/Berlin
network_mode: host
nodered:
container_name: node-red-hass
image: nodered/node-red
restart: always
ports:
- 1880:1880
- 9229:9229
environment:
- TZ=Europe/Berlin
volumes:
- /etc/localtime:/etc/localtime:ro
- ./nodered:/data
network_mode: host
rhasspy:
container_name: rhasspy-hass
image: "synesthesiam/rhasspy-server:latest"
restart: unless-stopped
volumes:
- ./rhasspy/profiles:/profiles"
ports:
- "12101:12101"
devices:
- "/dev/snd:/dev/snd"
command: --user-profiles /profiles --profile de
network_mode: host
marytts:
container_name: marytts-hass
image: synesthesiam/marytts:5.2
restart: unless-stopped
ports:
- "59125:59125"
network_mode: host