Skip to content

Instantly share code, notes, and snippets.

@yriiolik
yriiolik / Dockerfile
Created March 29, 2024 16:36 — forked from dieu/Dockerfile
Home Assistant Docker on Mac OS
FROM homeassistant/home-assistant:stable
# Install avahi-daemon in container
# https://gnanesh.me/avahi-docker-non-root.html
RUN set -ex \
&& apk --no-cache --no-progress add avahi avahi-tools dbus \
# Disable default Avahi services
&& rm /etc/avahi/services/* \
&& rm -rf /var/cache/apk/*