• 0 Posts
  • 3 Comments
Joined 10 months ago
cake
Cake day: November 21st, 2023

help-circle


  • One thing nobody has mentioned here, I run all my services as a docker container. It makes them very easy to back up, and very easy to segregate. If a service gets compromised, in theory, it’s isolated to what it can access inside the docker container and can’t compromise the host. And if you delete and rebuild the container, any damage done in the container dies with it.

    Running home assistant with docker is as simple as the command:

    sudo docker run -d \

    --name homeassistant \

    --restart=unless-stopped \

    -e TZ=America/Chicago \

    -v $(pwd)/homeassistant:/config \

    --network=host \

    homeassistant/home-assistant

    There is of course, more details to learn and the devils are in the details, but thankfully anything you want to know on how to set up your network in this regard you can just ask chatgpt.