From bfd75d736c3693f7b055e890bf9a36d51543f646 Mon Sep 17 00:00:00 2001 From: alorente Date: Fri, 6 Dec 2024 01:21:14 +0100 Subject: [PATCH] Add OCI Image Labels (#7924) --- docker/Dockerfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index cc05849271..1754d951e5 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -196,8 +196,16 @@ LABEL \ io.hass.name="ESPHome" \ io.hass.description="Manage and program ESP8266/ESP32 microcontrollers through YAML configuration files" \ io.hass.type="addon" \ - io.hass.version="${BUILD_VERSION}" + io.hass.version="${BUILD_VERSION}" \ # io.hass.arch is inherited from addon-debian-base + org.opencontainers.image.authors="The ESPHome Authors" \ + org.opencontainers.image.title="ESPHome" \ + org.opencontainers.image.description="Manage and program ESP8266/ESP32 microcontrollers through YAML configuration files" \ + org.opencontainers.image.url="https://esphome.io/" \ + org.opencontainers.image.documentation="https://esphome.io/" \ + org.opencontainers.image.source="https://github.com/esphome/esphome" \ + org.opencontainers.image.licenses="ESPHome" \ + org.opencontainers.image.version=${BUILD_VERSION}