Home Assistant Base Images

June 16, 2026 ยท View on GitHub

These base images are designed as Docker base images for use with building Home Assistant containers and add-ons. It is recommended to use these as a base for your own Home Assistant Add-ons.

Using these images as a base for other Docker projects is, however, not recommended.

The image include S6-Overlay, Bashio and TempIO.

Supported architectures

Images are built for all platforms officially supported by Home Assistant, which are amd64 and arm64.

Beginning with the 2026.03.1 release, all images are published as multi-arch images for these platforms. The old architecture-prefixed images (aarch64-*, amd64-*) are still available but preferably the multi-arch images should be used.

Base images

We support versions that are not EOL: https://alpinelinux.org/releases/

ImageOSTagslatest
baseAlpine3.22, 3.23, 3.243.24

jemalloc

We support on our platforms jemalloc. On the application which you want to enable it, set as environment LD_PRELOAD="/usr/local/lib/libjemalloc.so.2" on your Dockerfile or before you start the application.

Python images

We support the latest 3 releases with the latest 3 Alpine versions.

ImageOSPython versionsTagslatest
base-pythonAlpine3.12, 3.13, 3.143.12-alpine3.22, 3.12-alpine3.23, 3.12-alpine3.24, 3.13-alpine3.22, 3.13-alpine3.23, 3.13-alpine3.24, 3.14-alpine3.22, 3.14-alpine3.23, 3.14-alpine3.243.14-alpine3.24

Others

Debian images

Note: We prefer the Alpine based version because it's more IoT friendly. In some case, you need a glibc system like this.

ImageOSTagslatest
base-debianDebianbookworm, trixietrixie

Ubuntu images

Note: We prefer the alpine based version because it's more IoT friendly. In some case, you need a glibc system like this.

ImageOSTagslatest
base-ubuntuUbuntu22.04, 24.04, 26.0426.04

Building images locally

Docker BuildKit (docker buildx) can be used for building the images locally without any extra tooling. Following are examples of building the images for a single (host) architecture.

For a multi-platform build or cross-compilation, use the --platform flag with the appropriate target platform. See the official Docker documentation on multi-platform builds for more details.

Examples

Alpine base using the default version from the Dockerfile:

docker buildx build -t base alpine/

To use a specific Alpine base version:

docker buildx build \
  --build-arg ALPINE_VERSION=3.23 \
  -t base:3.23 \
  alpine/

Debian base:

docker buildx build \
  --build-arg DEBIAN_VERSION=trixie
  -t base-debian:trixie \
  debian/

Ubuntu base:

docker buildx build \
  --build-arg UBUNTU_VERSION=26.04 \
  -t base-ubuntu:26.04 \
  ubuntu/

Python 3.14 image, using the Home Assistant Alpine 3.24 base image from GHCR:

docker buildx build \
  --build-arg BASE_IMAGE=ghcr.io/home-assistant/base \
  --build-arg BASE_VERSION=3.24 \
  -t base-python:3.14-alpine3.24 \
  python/3.14/