Fix influxdb comms
Stupid host network mode and DNS
This commit is contained in:
parent
cfd46ea752
commit
e4aba817cc
2 changed files with 7 additions and 1 deletions
|
@ -15,7 +15,8 @@ homeassistant:
|
|||
- type: totp
|
||||
|
||||
influxdb:
|
||||
host: influxdb
|
||||
host: host.docker.internal
|
||||
port: 48086
|
||||
|
||||
person:
|
||||
- name: Jake
|
||||
|
|
|
@ -11,6 +11,8 @@ services:
|
|||
restart: unless-stopped
|
||||
depends_on:
|
||||
- influxdb
|
||||
extra_hosts:
|
||||
- host.docker.internal:172.17.0.1
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.homeassistant.rule=Host(`homeassistant.jakehoward.tech`)
|
||||
|
@ -22,8 +24,11 @@ services:
|
|||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./influxdb:/var/lib/influxdb
|
||||
ports:
|
||||
- 127.0.0.1:48086:8086
|
||||
environment:
|
||||
- INFLUXDB_DB=home_assistant
|
||||
- INFLUXDB_HTTP_AUTH_ENABLED=
|
||||
|
||||
esphome:
|
||||
image: esphome/esphome:latest
|
||||
|
|
Loading…
Reference in a new issue