Last active
August 13, 2026 15:13
-
-
Save mrl22/cd07380b3f251f267136df428c735849 to your computer and use it in GitHub Desktop.
HomeAssistant on your Mac via Docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install Docker | |
| mkdir -p ~/.docker/homeassistant/config | |
| docker run -d \ [16:09:34] | |
| --name homeassistant \ | |
| --privileged \ | |
| --restart=unless-stopped \ | |
| -e TZ=Europe/London \ | |
| -v ~/.docker/homeassistant/config:/config \ | |
| -p 8123:8123 \ | |
| ghcr.io/home-assistant/home-assistant:stable | |
| # Visit http://localhost:8123/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment