<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Quick Home Assistant setup with Docker]]></title><description><![CDATA[<p dir="auto">I wrote this <code>start.sh</code> bash script to run Home Assistant for the <a href="https://www.youtube.com/watch?v=w_91agon9rg" rel="nofollow ugc">Youtube demo</a> but you could also use it to try out Home Assistant and/or the TRIGGERcmd integration for it:</p>
<pre><code>#!/bin/bash

mkdir -p ~/ha/config
docker run -d \
  --name homeassistant \
  --privileged \
  -e TZ=America/Detroit \
  -v ~/ha/config:/config \
  -v /run/dbus:/run/dbus:ro \
  -p 8123:8123 \
  --rm \
  ghcr.io/home-assistant/home-assistant:stable
</code></pre>
<p dir="auto">This shows my session where I ran it, then confirmed it's running with the <strong>docker ps</strong> command:</p>
<pre><code>russ@RussHP:~/ha$ cat start.sh
#!/bin/bash

mkdir -p ~/ha/config
docker run -d \
  --name homeassistant \
  --privileged \
  -e TZ=America/Detroit \
  -v ~/ha/config:/config \
  -v /run/dbus:/run/dbus:ro \
  -p 8123:8123 \
  --rm \
  ghcr.io/home-assistant/home-assistant:stable
russ@RussHP:~/ha$ ./start.sh
a32957000a3f029fda67ff1cc2d96b22d2fe4f13125536023e94723a5df2dc6f
russ@RussHP:~/ha$ docker ps
CONTAINER ID   IMAGE                                          COMMAND   CREATED       STATUS       PORTS                    NAMES
59c343cb87fa   ghcr.io/home-assistant/home-assistant:stable   "/init"   2 hours ago   Up 2 hours   0.0.0.0:8123-&gt;8123/tcp   homeassistant
</code></pre>
<p dir="auto">After it was running, I was able to access it at <a href="http://localhost:8123" rel="nofollow ugc">http://localhost:8123</a></p>
]]></description><link>https://www.triggercmd.com/forum/topic/3195/quick-home-assistant-setup-with-docker</link><generator>RSS for Node</generator><lastBuildDate>Fri, 17 Apr 2026 22:09:11 GMT</lastBuildDate><atom:link href="https://www.triggercmd.com/forum/topic/3195.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 01 Jan 2025 18:45:59 GMT</pubDate><ttl>60</ttl></channel></rss>