-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔨 Implement OCI image specification on labels
- Loading branch information
Showing
1 changed file
with
12 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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} |