mirror of
https://github.com/hassio-addons/repository-edge.git
synced 2025-05-04 19:21:26 +00:00
🎉 Release of add-on SSH - Secure Shell 2.3.0
This commit is contained in:
parent
85c3cacf93
commit
7fea97f067
5 changed files with 101 additions and 0 deletions
23
README.md
23
README.md
|
@ -158,6 +158,19 @@ Network-wide ad blocking using your Hass.io instance
|
|||
|
||||
[:books: Pi-hole add-on documentation][addon-doc-pi-hole]
|
||||
|
||||
### ✓ [SSH - Secure Shell][addon-ssh]
|
||||
|
||||
![Latest Version][ssh-version-shield]
|
||||
![Supports armhf Architecture][ssh-armhf-shield]
|
||||
![Supports aarch64 Architecture][ssh-aarch64-shield]
|
||||
![Supports amd64 Architecture][ssh-amd64-shield]
|
||||
![Supports i386 Architecture][ssh-i386-shield]
|
||||
![Docker Pulls][ssh-pulls-shield]
|
||||
|
||||
Allows SSH connections to your Home Assistant instance
|
||||
|
||||
[:books: SSH - Secure Shell add-on documentation][addon-doc-ssh]
|
||||
|
||||
### ✓ [Shinobi Pro][addon-shinobi]
|
||||
|
||||
![Latest Version][shinobi-version-shield]
|
||||
|
@ -200,6 +213,7 @@ on the correct GitHub repository matching the add-on.
|
|||
- [Open an issue for the add-on: Homebridge][homebridge-issue]
|
||||
- [Open an issue for the add-on: IDE][ide-issue]
|
||||
- [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]
|
||||
|
||||
For a general repository issue or add-on ideas [open an issue here][issue]
|
||||
|
@ -331,6 +345,15 @@ SOFTWARE.
|
|||
[pi-hole-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
||||
[pi-hole-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
||||
[pi-hole-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
|
||||
[addon-ssh]: https://github.com/hassio-addons/addon-ssh/tree/v2.3.0
|
||||
[addon-doc-ssh]: https://github.com/hassio-addons/addon-ssh/blob/v2.3.0/README.md
|
||||
[ssh-issue]: https://github.com/hassio-addons/addon-ssh/issues
|
||||
[ssh-version-shield]: https://img.shields.io/badge/version-v2.3.0-blue.svg
|
||||
[ssh-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/ssh-armhf.svg
|
||||
[ssh-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
|
||||
[ssh-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
||||
[ssh-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
||||
[ssh-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
|
||||
[addon-shinobi]: https://github.com/hassio-addons/addon-shinobi/tree/v0.1.0
|
||||
[addon-doc-shinobi]: https://github.com/hassio-addons/addon-shinobi/blob/v0.1.0/README.md
|
||||
[shinobi-issue]: https://github.com/hassio-addons/addon-shinobi/issues
|
||||
|
|
20
ssh/CHANGELOG.md
Normal file
20
ssh/CHANGELOG.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
[Full Changelog][v2.2.1-v2.3.0]
|
||||
|
||||
### Fixed
|
||||
|
||||
- Adds HASSIO_TOKEN to user environment
|
||||
|
||||
### Added
|
||||
|
||||
- Adds add-on icon
|
||||
- Adds zip package
|
||||
- Adds allow_remote_port_forwarding option
|
||||
- Adds documentation for allow_remote_port_forwarding option
|
||||
|
||||
### Changed
|
||||
|
||||
- Updates base image to v1.3.3
|
||||
- Updates hassio-cli to v1.2.1
|
||||
- Optimizes images in this repository
|
||||
|
||||
[v2.2.1-v2.3.0]: https://github.com/hassio-addons/addon-ssh/compare/v2.2.1...v2.3.0
|
58
ssh/config.json
Normal file
58
ssh/config.json
Normal file
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
"name": "SSH - Secure Shell",
|
||||
"version": "2.3.0",
|
||||
"slug": "ssh",
|
||||
"description": "Allows SSH connections to your Home Assistant instance",
|
||||
"url": "https://community.home-assistant.io/t/community-hass-io-add-on-ssh/33820?u=frenck",
|
||||
"startup": "services",
|
||||
"boot": "auto",
|
||||
"hassio_api": true,
|
||||
"homeassistant_api": true,
|
||||
"host_network": true,
|
||||
"map": [
|
||||
"config:rw",
|
||||
"ssl:rw",
|
||||
"addons:rw",
|
||||
"share:rw",
|
||||
"backup:rw"
|
||||
],
|
||||
"options": {
|
||||
"log_level": "info",
|
||||
"port": 22,
|
||||
"username": "hassio",
|
||||
"password": "",
|
||||
"authorized_keys": [],
|
||||
"sftp": false,
|
||||
"compatibility_mode": false,
|
||||
"allow_agent_forwarding": false,
|
||||
"allow_remote_port_forwarding": false,
|
||||
"allow_tcp_forwarding": false,
|
||||
"packages": [],
|
||||
"init_commands": []
|
||||
},
|
||||
"schema": {
|
||||
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
|
||||
"port": "port",
|
||||
"username": "str",
|
||||
"password": "str",
|
||||
"authorized_keys": [
|
||||
"str"
|
||||
],
|
||||
"sftp": "bool",
|
||||
"compatibility_mode": "bool",
|
||||
"allow_agent_forwarding": "bool",
|
||||
"allow_remote_port_forwarding": "bool",
|
||||
"allow_tcp_forwarding": "bool",
|
||||
"packages": [
|
||||
"str"
|
||||
],
|
||||
"init_commands": [
|
||||
"str"
|
||||
]
|
||||
},
|
||||
"environment": {
|
||||
"LOG_FORMAT": "{LEVEL}: {MESSAGE}",
|
||||
"SUPERVISOR_VERSION": ">=0.94.0"
|
||||
},
|
||||
"image": "hassioaddons/ssh-{arch}"
|
||||
}
|
BIN
ssh/icon.png
Normal file
BIN
ssh/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
ssh/logo.png
Normal file
BIN
ssh/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
Loading…
Add table
Add a link
Reference in a new issue