mirror of
https://github.com/hassio-addons/addon-base.git
synced 2025-05-07 12:21:30 +00:00
🔨 Re-branding
This commit is contained in:
parent
73331ac658
commit
f7e91db2b6
7 changed files with 22 additions and 22 deletions
6
.github/settings.yml
vendored
6
.github/settings.yml
vendored
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
repository:
|
||||
description: "Docker base images (Alpine) - Community Hass.io Add-on for Home Assistant"
|
||||
description: "Docker base images (Alpine) - Community Home Assistant Add-ons"
|
||||
homepage: https://addons.community
|
||||
topics: docker, hassio, hass, baseimage, baseimage-docker, home-automation, home-assistant, alpine
|
||||
topics: docker, baseimage, baseimage-docker, addons, homeassistant, home-assistant, alpine
|
||||
private: false
|
||||
has_issues: true
|
||||
has_projects: false
|
||||
|
@ -46,7 +46,7 @@ labels:
|
|||
- name: "Type: Discussion"
|
||||
color: d4c5f9
|
||||
description: "Marks an issue as a generic discussion ticket."
|
||||
- name: "Type: Maintaince"
|
||||
- name: "Type: Maintenance"
|
||||
color: 2af79e
|
||||
description: "Generic maintaince tasks, e.g., package updates."
|
||||
|
||||
|
|
18
README.md
18
README.md
|
@ -1,4 +1,4 @@
|
|||
# Community Hass.io Add-ons: Base Images
|
||||
# Community Home Assistant Add-on: Base Images
|
||||
|
||||
[![GitHub Release][releases-shield]][releases]
|
||||
![Project Stage][project-stage-shield]
|
||||
|
@ -21,12 +21,12 @@
|
|||
|
||||
[![Support Frenck on Patreon][patreon-shield]][patreon]
|
||||
|
||||
Docker base images used by Community Hass.io Add-ons.
|
||||
Docker base images used by Community Home Assistant Add-ons.
|
||||
|
||||
## About
|
||||
|
||||
These are the base images used by add-ons created by the Community Hass.io
|
||||
Add-ons.
|
||||
These are the base images used by add-ons created by the
|
||||
Community Home Assistant Add-ons.
|
||||
|
||||
While Home Assistant provides base images, the images provided by this
|
||||
repository contain some extras:
|
||||
|
@ -34,7 +34,7 @@ repository contain some extras:
|
|||
- Adds [s6] as a process supervisor.
|
||||
- Adds `jq` & `curl`, since every add-on uses them.
|
||||
- Adds Docker [Label Schema][label-schema] support.
|
||||
- Includes a Hass.io helper library: [Bashio][bashio]
|
||||
- Includes a helper library: [Bashio][bashio]
|
||||
- Handles logs, add-on startup banners and update notifications.
|
||||
- Several small adjustments and improvements.
|
||||
|
||||
|
@ -58,7 +58,7 @@ Got questions?
|
|||
|
||||
You have several options to get them answered:
|
||||
|
||||
- The [Community Hass.io Add-ons Discord chat server][discord] for add-on
|
||||
- The [Community Home Assistant Add-ons Discord chat server][discord] for add-on
|
||||
support and feature requests.
|
||||
- The [Home Assistant Discord Chat Server][discord-ha] for general Home
|
||||
Assistant discussions and questions.
|
||||
|
@ -84,11 +84,11 @@ The original setup of this repository is by [Franck Nijhof][frenck].
|
|||
For a full list of all authors and contributors,
|
||||
check [the contributor's page][contributors].
|
||||
|
||||
## We have got some Hass.io add-ons for you
|
||||
## We have got some Home Assistant add-ons for you
|
||||
|
||||
Want some more functionality to your Hass.io Home Assistant instance?
|
||||
Want some more functionality to your Home Assistant instance?
|
||||
|
||||
We have created multiple add-ons for Hass.io. For a full list, check out
|
||||
We have created multiple add-ons for Home Assistant. For a full list, check out
|
||||
our [GitHub Repository][repository].
|
||||
|
||||
## License
|
||||
|
|
|
@ -82,7 +82,7 @@ LABEL \
|
|||
io.hass.base.name="alpine" \
|
||||
io.hass.base.image="hassioaddons/base" \
|
||||
maintainer="Franck Nijhof <frenck@addons.community>" \
|
||||
org.label-schema.description="Community Hass.io Add-ons: ${BUILD_ARCH} Base image" \
|
||||
org.label-schema.description="Community Home Assistant Add-on: ${BUILD_ARCH} Base image" \
|
||||
org.label-schema.build-date=${BUILD_DATE} \
|
||||
org.label-schema.name="Addon base for ${BUILD_ARCH}" \
|
||||
org.label-schema.schema-version="1.0" \
|
||||
|
@ -90,4 +90,4 @@ LABEL \
|
|||
org.label-schema.usage="https://github.com/hassio-addons/addon-base/blob/master/README.md" \
|
||||
org.label-schema.vcs-ref=${REF} \
|
||||
org.label-schema.vcs-url="https://github.com/hassio-addons/addon-base" \
|
||||
org.label-schema.vendor="Franck Nijhof"
|
||||
org.label-schema.vendor="Community Home Assistant Add-ons"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bashio
|
||||
# ==============================================================================
|
||||
# Community Hass.io Add-ons: Base Images
|
||||
# Community Home Assistant Add-on: Base Images
|
||||
# Displays an message right before terminating in case something went wrong
|
||||
# ==============================================================================
|
||||
if [[ "${S6_STAGE2_EXITED}" -ne 0 ]]; then
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
#!/usr/bin/with-contenv bashio
|
||||
# ==============================================================================
|
||||
# Community Hass.io Add-ons: Base Images
|
||||
# Community Home Assistant Add-on: Base Images
|
||||
# Displays a simple add-on banner on startup
|
||||
# ==============================================================================
|
||||
if bashio::supervisor.ping; then
|
||||
bashio::log.blue \
|
||||
'-----------------------------------------------------------'
|
||||
bashio::log.blue " Hass.io Add-on: $(bashio::addon.name)"
|
||||
bashio::log.blue " Add-on: $(bashio::addon.name)"
|
||||
bashio::log.blue " $(bashio::addon.description)"
|
||||
bashio::log.blue \
|
||||
'-----------------------------------------------------------'
|
||||
|
@ -23,8 +23,8 @@ if bashio::supervisor.ping; then
|
|||
|
||||
bashio::log.blue " System: $(bashio::host.operating_system)" \
|
||||
" ($(bashio::info.arch) / $(bashio::info.machine))"
|
||||
bashio::log.blue " Home Assistant version: $(bashio::info.homeassistant)"
|
||||
bashio::log.blue " Supervisor version: $(bashio::info.supervisor)"
|
||||
bashio::log.blue " Home Assistant Core: $(bashio::info.homeassistant)"
|
||||
bashio::log.blue " Home Assistant Supervisor: $(bashio::info.supervisor)"
|
||||
|
||||
bashio::log.blue \
|
||||
'-----------------------------------------------------------'
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/with-contenv bashio
|
||||
# ==============================================================================
|
||||
# Community Hass.io Add-ons: Base Images
|
||||
# Community Home Assistant Add-on: Base Images
|
||||
# Sets the log level correctly
|
||||
# ==============================================================================
|
||||
declare log_level
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
# ==============================================================================
|
||||
# Community Hass.io Add-ons: Base Images
|
||||
# Community Home Assistant Add-on: Base Images
|
||||
# This script patches all service commands into the appropriate s6- commands
|
||||
# Why not systemd? Docker said no, so did we ;)
|
||||
# ==============================================================================
|
||||
|
@ -30,4 +30,4 @@ if [[ ! -d "/var/run/s6/services/${service}" ]] ; then
|
|||
exit
|
||||
fi;
|
||||
|
||||
${command} "${service}"
|
||||
${command} "${service}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue