Skip to content

Commit

Permalink
🔨 Implement OCI image specification on labels
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck committed May 16, 2020
1 parent 3fbd7c7 commit 9403eba
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions appdaemon/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,20 @@ ARG BUILD_VERSION

# Labels
LABEL \
io.hass.name="appdaemon4" \
io.hass.name="AppDaemon 4" \
io.hass.description="Python Apps and Dashboard using AppDaemon 4.x for Home Assistant" \
io.hass.arch="${BUILD_ARCH}" \
io.hass.type="addon" \
io.hass.version=${BUILD_VERSION} \
maintainer="Franck Nijhof <[email protected]>" \
org.label-schema.description="Python Apps and Dashboard using AppDaemon 4.x for Home Assistant" \
org.label-schema.build-date=${BUILD_DATE} \
org.label-schema.name="AppDaemon4" \
org.label-schema.schema-version="1.0" \
org.label-schema.url="https://community.home-assistant.io/t/home-assistant-community-add-on-appdaemon-4/163259?u=frenck" \
org.label-schema.usage="https://github.com/hassio-addons/addon-appdaemon/tree/master/README.md" \
org.label-schema.vcs-ref=${BUILD_REF} \
org.label-schema.vcs-url="https://github.com/hassio-addons/addon-appdaemon" \
org.label-schema.vendor="Home Assistant Community Add-ons"
org.opencontainers.image.title="AppDaemon 4" \
org.opencontainers.image.description="Python Apps and Dashboard using AppDaemon 4.x for Home Assistant" \
org.opencontainers.image.vendor="Home Assistant Community Add-ons" \
org.opencontainers.image.authors="Franck Nijhof <[email protected]>" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.url="https://addons.community" \
org.opencontainers.image.source="https://github.com/hassio-addons/addon-appdaemon" \
org.opencontainers.image.documentation="https://github.com/hassio-addons/addon-appdaemon/blob/master/README.md" \
org.opencontainers.image.created=${BUILD_DATE} \
org.opencontainers.image.revision=${BUILD_REF} \
org.opencontainers.image.version=${BUILD_VERSION}

0 comments on commit 9403eba

Please sign in to comment.