diff --git a/README.md b/README.md index 7913912c8..6e940e9bf 100644 --- a/README.md +++ b/README.md @@ -184,6 +184,19 @@ Beautiful and feature-rich CCTV/NVR for your cameras [:books: Shinobi Pro add-on documentation][addon-doc-shinobi] +### ✓ [Terminal][addon-terminal] + +![Latest Version][terminal-version-shield] +![Supports armhf Architecture][terminal-armhf-shield] +![Supports aarch64 Architecture][terminal-aarch64-shield] +![Supports amd64 Architecture][terminal-amd64-shield] +![Supports i386 Architecture][terminal-i386-shield] +![Docker Pulls][terminal-pulls-shield] + +Terminal access to your Home Assistant instance via the web + +[:books: Terminal add-on documentation][addon-doc-terminal] + ## Releases Add-on releases are **NOT** based on [Semantic Versioning][semver], unlike @@ -215,6 +228,7 @@ on the correct GitHub repository matching the add-on. - [Open an issue for the add-on: Pi-hole][pi-hole-issue] - [Open an issue for the add-on: SSH - Secure Shell][ssh-issue] - [Open an issue for the add-on: Shinobi Pro][shinobi-issue] +- [Open an issue for the add-on: Terminal][terminal-issue] For a general repository issue or add-on ideas [open an issue here][issue] @@ -363,6 +377,15 @@ SOFTWARE. [shinobi-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [shinobi-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg [shinobi-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg +[addon-terminal]: https://github.com/hassio-addons/addon-terminal/tree/v2.3.0 +[addon-doc-terminal]: https://github.com/hassio-addons/addon-terminal/blob/v2.3.0/README.md +[terminal-issue]: https://github.com/hassio-addons/addon-terminal/issues +[terminal-version-shield]: https://img.shields.io/badge/version-v2.3.0-blue.svg +[terminal-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/terminal-armhf.svg +[terminal-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg +[terminal-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg +[terminal-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg +[terminal-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg [awesome-shield]: https://img.shields.io/badge/awesome%3F-yes-brightgreen.svg [discord-shield]: https://img.shields.io/discord/330944238910963714.svg [discord]: https://discord.gg/c5DvZ4e diff --git a/terminal/CHANGELOG.md b/terminal/CHANGELOG.md new file mode 100644 index 000000000..3ab2becb9 --- /dev/null +++ b/terminal/CHANGELOG.md @@ -0,0 +1,19 @@ +[Full Changelog][v2.2.1-v2.3.0] + +### Fixed + +- Adds HASSIO_TOKEN to user environment + +### Added + +- Adds add-on icon +- Adds zip package + +### Changed + +- Updates base image to v1.3.3 +- Updates hassio-cli to v1.2.1 +- Optimizes images in this repository +- Updates ttyd to 1.4.0+ + +[v2.2.1-v2.3.0]: https://github.com/hassio-addons/addon-terminal/compare/v2.2.1...v2.3.0 \ No newline at end of file diff --git a/terminal/config.json b/terminal/config.json new file mode 100644 index 000000000..4caf45246 --- /dev/null +++ b/terminal/config.json @@ -0,0 +1,52 @@ +{ + "name": "Terminal", + "version": "2.3.0", + "slug": "terminal", + "description": "Terminal access to your Home Assistant instance via the web", + "url": "https://community.home-assistant.io/t/community-hass-io-add-on-terminal/33814?u=frenck", + "webui": "[PROTO:ssl]://[HOST]:[PORT:7681]", + "startup": "services", + "boot": "auto", + "hassio_api": true, + "homeassistant_api": true, + "host_network": false, + "ports": { + "7681/tcp": 7681 + }, + "map": [ + "config:rw", + "ssl:rw", + "addons:rw", + "share:rw", + "backup:rw" + ], + "options": { + "log_level": "info", + "username": "", + "password": "", + "ssl": false, + "certfile": "fullchain.pem", + "keyfile": "privkey.pem", + "packages": [], + "init_commands": [] + }, + "schema": { + "log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)", + "username": "str", + "password": "str", + "ssl": "bool", + "certfile": "str", + "keyfile": "str", + "packages": [ + "str" + ], + "init_commands": [ + "str" + ] + }, + "environment": { + "LOG_FORMAT": "{LEVEL}: {MESSAGE}", + "SUPERVISOR_VERSION": ">=0.81.0" + }, + "image": "hassioaddons/terminal-{arch}" +} \ No newline at end of file diff --git a/terminal/icon.png b/terminal/icon.png new file mode 100644 index 000000000..7e195a289 Binary files /dev/null and b/terminal/icon.png differ diff --git a/terminal/logo.png b/terminal/logo.png new file mode 100644 index 000000000..17898a261 Binary files /dev/null and b/terminal/logo.png differ