fedora-iot / iot-docs

Repository for IoT docs for docs.fp.o
https://docs.fedoraproject.org/en-US/iot/
6 stars 19 forks source link

tutorial for deploying Home Assistant on Fedora IoT #40

Open miabbott opened 1 year ago

miabbott commented 1 year ago

Let's document how to deploy Home Assistant on Fedora IoT

say-paul commented 1 year ago

This compose has worked for me in RHEL 9.2

version: '3'
services:
  homeassistant:
    container_name: homeassistant
    image: "ghcr.io/home-assistant/home-assistant:stable"
    volumes:
      - "./config:/config"
      - "/etc/localtime:/etc/localtime:ro"
    restart: unless-stopped
    privileged: true
    ports:
      - "5001:8123"
say-paul commented 1 year ago

Though we can build an Image with HA built in.

nullr0ute commented 1 year ago

Though we can build an Image with HA built in.

I would prefer not to if possible because it's more images for people to QA every release.