⬆️ Updating add-on TasmoAdmin to cf8b963

This commit is contained in:
Community Hass.io Add-ons Bot 2021-11-10 18:35:30 +00:00
parent 66cf5913c0
commit df4c5e379d
5 changed files with 37 additions and 43 deletions

View file

@ -953,10 +953,10 @@ SOFTWARE.
[tailscale-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[tailscale-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
[tailscale-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-tasmoadmin]: https://github.com/hassio-addons/addon-tasmoadmin/tree/c58ebb2
[addon-doc-tasmoadmin]: https://github.com/hassio-addons/addon-tasmoadmin/blob/c58ebb2/README.md
[addon-tasmoadmin]: https://github.com/hassio-addons/addon-tasmoadmin/tree/cf8b963
[addon-doc-tasmoadmin]: https://github.com/hassio-addons/addon-tasmoadmin/blob/cf8b963/README.md
[tasmoadmin-issue]: https://github.com/hassio-addons/addon-tasmoadmin/issues
[tasmoadmin-version-shield]: https://img.shields.io/badge/version-c58ebb2-blue.svg
[tasmoadmin-version-shield]: https://img.shields.io/badge/version-cf8b963-blue.svg
[tasmoadmin-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[tasmoadmin-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[tasmoadmin-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg

View file

@ -1,4 +1,6 @@
# Changelog since v0.15.1
- ⬆️ Upgrades add-on base image to 10.2.2 (#220)
- Migrate JSON config to YAML (#219)
- Switch to centralized GitHub Action Workflows (#218)
- ⬆️ Upgrades php7 to 7.4.25-r0 (#217)
- ⬆️ Bump actions/checkout from 2.3.4 to 2.3.5 (#210)

View file

@ -53,6 +53,6 @@ If you are more interested in stable releases of our add-ons:
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
[patreon]: https://www.patreon.com/frenck
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[release-shield]: https://img.shields.io/badge/version-c58ebb2-blue.svg
[release]: https://github.com/hassio-addons/addon-tasmoadmin/tree/c58ebb2
[release-shield]: https://img.shields.io/badge/version-cf8b963-blue.svg
[release]: https://github.com/hassio-addons/addon-tasmoadmin/tree/cf8b963
[screenshot]: https://github.com/hassio-addons/addon-tasmoadmin/raw/main/images/screenshot.png

View file

@ -1,38 +0,0 @@
{
"name": "TasmoAdmin",
"version": "c58ebb2",
"slug": "sonweb",
"description": "Centrally manage all your Sonoff-Tasmota devices",
"url": "https://github.com/hassio-addons/addon-tasmoadmin",
"webui": "[PROTO:ssl]://[HOST]:[PORT:9541]",
"startup": "system",
"init": false,
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"map": [
"ssl"
],
"ports": {
"9541/tcp": 9541
},
"ports_description": {
"9541/tcp": "TasmoAdmin web interface"
},
"options": {
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"ssl": "bool",
"certfile": "str",
"keyfile": "str"
},
"image": "ghcr.io/hassio-addons/tasmoadmin/{arch}"
}

30
tasmoadmin/config.yaml Normal file
View file

@ -0,0 +1,30 @@
arch:
- aarch64
- amd64
- armhf
- armv7
- i386
description: Centrally manage all your Sonoff-Tasmota devices
image: ghcr.io/hassio-addons/tasmoadmin/{arch}
init: false
map:
- ssl
name: TasmoAdmin
options:
certfile: fullchain.pem
keyfile: privkey.pem
ssl: true
ports:
9541/tcp: 9541
ports_description:
9541/tcp: TasmoAdmin web interface
schema:
certfile: str
keyfile: str
log_level: list(trace|debug|info|notice|warning|error|fatal)?
ssl: bool
slug: sonweb
startup: system
url: https://github.com/hassio-addons/addon-tasmoadmin
version: cf8b963
webui: '[PROTO:ssl]://[HOST]:[PORT:9541]'