Hello,
I’ve been running home assistant on docker compose for years, but 3 weeks ago the following problem arised:
I’ve already added the lines needed, but nothing changed. I also have bluez installed.
This is the compose:
services:
homeassistant:
container_name: homeassistant
image: "ghcr.io/home-assistant/home-assistant:stable"
volumes:
- config:/config
- /etc/localtime:/etc/localtime:ro
- /run/dbus:/run/dbus:ro
privileged: true
cap_add:
- NET_ADMIN
- NET_RAW
ports:
- 8123:8123
stop_grace_period: 2m
healthcheck:
test: ["CMD", "curl", "-fs", "-S", "--max-time", "2", "http://localhost:8123/"]
interval: 30s
timeout: 10s
retries: 3
#network_mode: host
networks:
- homeassistant
- caddy
restart: always
How should I proceed?
Thank you
