Sign inSign up

11notes/homeassistant

By 11notes

Updated 1 day ago

run home assistant rootless

Image
Buildkit cache
1

10K+

11notes/homeassistant repository overview

banner

HOMEASSISTANT

size5pxpulls5px5pxswiss_made

run home assistant rootless

INTRODUCTION 📢

Home Assistant (created by home-assistant) is an open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server.

SYNOPSIS 📖

What can I do with this? This image will give you a rootless Home Assistant installation.

UNIQUE VALUE PROPOSITION 💶

Why should I run this image and not the other image(s) that already exist? Good question! Because ...

  • ... this image runs rootless as 1000:1000
  • ... this image is auto updated to the latest version via CI/CD
  • ... this image is built and compiled from source
  • ... this image has a health check
  • ... this image runs read-only
  • ... this image is automatically scanned for CVEs before and after publishing
  • ... this image is created via a secure and pinned CI/CD process
  • ... this image runs a basic integration test before it will be published (or not if it fails)

If you value security, simplicity and optimizations to the extreme, then this image might be for you.

VOLUMES 📁

  • /homeassistant/etc - Directory of all config and custom files
  • /homeassistant/var - Directory where Homeassistant will store python packages and other integration files

COMPOSE ✂️

name: "iot"

x-lockdown: &lockdown
  # prevents write access to the image itself
  read_only: true
  # prevents any process within the container to gain more privileges
  security_opt:
    - "no-new-privileges=true"

services:
  homeassistant:
    depends_on:
      postgres:
        condition: "service_healthy"
        restart: true
    image: "11notes/homeassistant:2026.9.3"
    <<: *lockdown
    environment:
      TZ: "Europe/Zurich"
      POSTGRES_PASSWORD: "${POSTGRES_PASSWORD}"
    volumes:
      - "homeassistant.etc:/homeassistant/etc"
      - "homeassistant.var:/homeassistant/var"
    tmpfs:
      # needed for read-only and UV caching
      - "/homeassistant/tmp:uid=1000,gid=1000"
    networks:
      frontend:
      backend:
    ports:
      - "3000:8123/tcp"
    restart: "always"

  postgres:
    # for more information about this image checkout:
    # https://github.com/11notes/docker-postgres
    image: "11notes/postgres:18"
    <<: *lockdown
    environment:
      TZ: "Europe/Zurich"
      POSTGRES_PASSWORD: "${POSTGRES_PASSWORD}"
    networks:
      backend:
    volumes:
      - "postgres.etc:/postgres/etc"
      - "postgres.var:/postgres/var"
      - "postgres.backup:/postgres/backup"
    tmpfs:
      - "/postgres/run:uid=1000,gid=1000"
      - "/postgres/log:uid=1000,gid=1000"
    restart: "always"

volumes:
  homeassistant.etc:
  homeassistant.var:
  postgres.etc:
  postgres.var:
  postgres.backup:

networks:
  frontend:
  backend:
    internal: true

To find out how you can change the default UID/GID of this container image, consult the RTFM.

DEFAULT SETTINGS 🗃️

ParameterValueDescription
userdockeruser name
uid1000user identifier
gid1000group identifier
home/homeassistanthome directory of user docker

ENVIRONMENT 📝

ParameterValueDefault
TZTime Zone
DEBUGWill activate debug option for container image and app (if available)

MAIN TAGS 🏷️

These are the main tags for the image. There is also a tag for each commit and its shorthand sha256 value.

There is no latest tag, what am I supposed to do about updates?

It is my opinion that the :latest tag is a bad habbit and should not be used at all. Many developers introduce breaking changes in new releases. This would messed up everything for people who use :latest. If you don’t want to change the tag to the latest semver, simply use the short versions of semver. Instead of using :2026.9.3 you can use :2026 or :2026.9. Since on each new version these tags are updated to the latest version of the software, using them is identical to using :latest but at least fixed to a major or minor version. Which in theory should not introduce breaking changes.

If you still insist on having the bleeding edge release of this app, simply use the :rolling tag, but be warned! You will get the latest version of the app instantly, regardless of breaking changes or security issues or what so ever. You do this at your own risk!

REGISTRIES ☁️

docker pull 11notes/homeassistant:2026.9.3
docker pull ghcr.io/11notes/homeassistant:2026.9.3
docker pull quay.io/11notes/homeassistant:2026.9.3

SOURCE 💾

PARENT IMAGE 🏛️

BUILT WITH 🧰

GENERAL TIPS 📌

  • Use a reverse proxy like Traefik, Nginx, HAproxy to terminate TLS and to protect your endpoints
  • Use Let’s Encrypt DNS-01 challenge to obtain valid SSL certificates for your services

CAUTION ⚠️

  • This image comes with a default configuration with some default settings and examples. Please provide your own configuration if used in production.

ElevenNotes™️

This image is provided to you at your own risk. Always make backups before updating an image to a different version. Check the releases for breaking changes. If you have any problems with using this image simply raise an issue, thanks. If you have a question or inputs please create a new discussion instead of an issue. You can find all my other repositories on github.

created 19.09.2026, 06:10:35 (CET)

Tag summary

Content type

Image

Digest

sha256:888d88097

Size

648 MB

Last updated

1 day ago

docker pull 11notes/homeassistant:2026.9.3-nobody