From 729b4fec1a1a93bc1f356999097a6ea38cfeccf6 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sat, 16 May 2020 19:26:25 +0200 Subject: [PATCH] :hammer: Implement OCI image specification on labels --- thelounge/Dockerfile | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/thelounge/Dockerfile b/thelounge/Dockerfile index e3515d3..b14f918 100644 --- a/thelounge/Dockerfile +++ b/thelounge/Dockerfile @@ -39,17 +39,19 @@ ARG BUILD_VERSION # Labels LABEL \ io.hass.name="The Lounge" \ - io.hass.description="A self-hosted web IRC client." \ + io.hass.description="A self-hosted web IRC client" \ io.hass.arch="${BUILD_ARCH}" \ io.hass.type="addon" \ io.hass.version=${BUILD_VERSION} \ maintainer="Timmo " \ - org.label-schema.description="A self-hosted web IRC client." \ - org.label-schema.build-date=${BUILD_DATE} \ - org.label-schema.name="The Lounge" \ - org.label-schema.schema-version="1.0" \ - org.label-schema.url="https://community.home-assistant.io/?u=timmo001" \ - org.label-schema.usage="https://github.com/hassio-addons/addon-thelounge/tree/master/README.md" \ - org.label-schema.vcs-ref=${BUILD_REF} \ - org.label-schema.vcs-url="https://github.com/hassio-addons/addon-thelounge" \ - org.label-schema.vendor="Home Assistant Community Add-ons" + org.opencontainers.image.title="The Lounge" \ + org.opencontainers.image.description="A self-hosted web IRC client" \ + org.opencontainers.image.vendor="Home Assistant Community Add-ons" \ + org.opencontainers.image.authors="Timmo " \ + org.opencontainers.image.licenses="MIT" \ + org.opencontainers.image.url="https://addons.community" \ + org.opencontainers.image.source="https://github.com/hassio-addons/addon-thelounge" \ + org.opencontainers.image.documentation="https://github.com/hassio-addons/addon-thelounge/blob/master/README.md" \ + org.opencontainers.image.created=${BUILD_DATE} \ + org.opencontainers.image.revision=${BUILD_REF} \ + org.opencontainers.image.version=${BUILD_VERSION}