mirror of
https://github.com/hassio-addons/addon-ubuntu-base.git
synced 2025-05-07 04:11:26 +00:00
🔨 Re-branding
This commit is contained in:
parent
81896bcae8
commit
0259613138
7 changed files with 21 additions and 21 deletions
4
.github/settings.yml
vendored
4
.github/settings.yml
vendored
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
repository:
|
||||
description: "Docker base images (Ubuntu) - Community Hass.io Add-on for Home Assistant"
|
||||
description: "Docker base images (Ubuntu) - Community Home Assistant Add-ons"
|
||||
homepage: https://addons.community
|
||||
topics: docker, hassio, hass, baseimage, baseimage-docker, home-automation, home-assistant, ubuntu
|
||||
topics: docker, baseimage, baseimage-docker, addons, homeassistant, home-assistant, ubuntu
|
||||
private: false
|
||||
has_issues: true
|
||||
has_projects: false
|
||||
|
|
18
README.md
18
README.md
|
@ -1,4 +1,4 @@
|
|||
# Community Hass.io Add-ons: Ubuntu Base Images
|
||||
# Community Home Assistant Add-on: Ubuntu Base Images
|
||||
|
||||
[![GitHub Release][releases-shield]][releases]
|
||||
![Project Stage][project-stage-shield]
|
||||
|
@ -21,12 +21,12 @@
|
|||
|
||||
[![Support Frenck on Patreon][patreon-shield]][patreon]
|
||||
|
||||
Docker Ubuntu base images used by Community Hass.io Add-ons.
|
||||
Docker Ubuntu 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:
|
||||
|
@ -35,7 +35,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
|
||||
|
|
|
@ -65,7 +65,7 @@ ARG BUILD_VERSION
|
|||
# Labels
|
||||
LABEL \
|
||||
io.hass.name="Addon Ubuntu base for ${BUILD_ARCH}" \
|
||||
io.hass.description="Community Hass.io Add-ons: ${BUILD_ARCH} Ubuntu base image" \
|
||||
io.hass.description="Community Home Assistant Add-on: ${BUILD_ARCH} Ubuntu base image" \
|
||||
io.hass.arch="${BUILD_ARCH}" \
|
||||
io.hass.type="base" \
|
||||
io.hass.version=${BUILD_VERSION} \
|
||||
|
@ -73,7 +73,7 @@ LABEL \
|
|||
io.hass.base.name="ubuntu" \
|
||||
io.hass.base.image="hassioaddons/ubuntu-base" \
|
||||
maintainer="Franck Nijhof <frenck@addons.community>" \
|
||||
org.label-schema.description="Community Hass.io Add-ons: ${BUILD_ARCH} Ubuntu base image" \
|
||||
org.label-schema.description="Community Home Assistant Add-on: ${BUILD_ARCH} Ubuntu base image" \
|
||||
org.label-schema.build-date=${BUILD_DATE} \
|
||||
org.label-schema.name="Addon Ubuntu base for ${BUILD_ARCH}" \
|
||||
org.label-schema.schema-version="1.0" \
|
||||
|
@ -81,4 +81,4 @@ LABEL \
|
|||
org.label-schema.usage="https://github.com/hassio-addons/addon-ubuntu-base/blob/master/README.md" \
|
||||
org.label-schema.vcs-ref=${REF} \
|
||||
org.label-schema.vcs-url="https://github.com/hassio-addons/addon-ubuntu-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,6 +1,6 @@
|
|||
#!/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
|
||||
|
@ -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