Install Home Assistant on Docker Compose
Pull the docker image https://hub.docker.com/r/b4bz/homer
**Home Assistant compose Config file.yml** https://github.com/bastienwirtz/homer
version: '3'
services:
homeassistant:
container_name: homeassistant
image: "ghcr.io/home-assistant/home-assistant:stable"
volumes:
- /PATH/TO/YOUR/CONFIG:/config
- /etc/localtime:/etc/localtime:ro
ports:
- 8123:8123
restart: always
privileged: true
network_mode: host