mirror of
https://github.com/hassio-addons/repository-beta.git
synced 2025-05-04 11:01:24 +00:00
🎉 Release of add-on FTP 1.0.0
This commit is contained in:
parent
2b9df86db6
commit
96414bc99b
5 changed files with 118 additions and 0 deletions
23
README.md
23
README.md
|
@ -90,6 +90,19 @@ Example add-on by Community Hass.io Add-ons
|
|||
|
||||
[:books: Example add-on documentation][addon-doc-example]
|
||||
|
||||
### ✓ [FTP][addon-ftp]
|
||||
|
||||
![Latest Version][ftp-version-shield]
|
||||
![Supports armhf Architecture][ftp-armhf-shield]
|
||||
![Supports aarch64 Architecture][ftp-aarch64-shield]
|
||||
![Supports amd64 Architecture][ftp-amd64-shield]
|
||||
![Supports i386 Architecture][ftp-i386-shield]
|
||||
![Docker Pulls][ftp-pulls-shield]
|
||||
|
||||
A secure and fast FTP server for Hass.io
|
||||
|
||||
[:books: FTP add-on documentation][addon-doc-ftp]
|
||||
|
||||
### ✓ [Home Assistant Control Panel][addon-control-panel]
|
||||
|
||||
![Latest Version][control-panel-version-shield]
|
||||
|
@ -135,6 +148,7 @@ on the correct GitHub repository matching the add-on.
|
|||
- [Open an issue for the add-on: AirSonos][airsonos-issue]
|
||||
- [Open an issue for the add-on: AppDaemon3][appdaemon3-issue]
|
||||
- [Open an issue for the add-on: Example][example-issue]
|
||||
- [Open an issue for the add-on: FTP][ftp-issue]
|
||||
- [Open an issue for the add-on: Home Assistant Control Panel][control-panel-issue]
|
||||
|
||||
For a general repository issue or add-on ideas [open an issue here][issue]
|
||||
|
@ -221,6 +235,15 @@ SOFTWARE.
|
|||
[example-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
||||
[example-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
||||
[example-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
|
||||
[addon-ftp]: https://github.com/hassio-addons/addon-ftp/tree/v1.0.0
|
||||
[addon-doc-ftp]: https://github.com/hassio-addons/addon-ftp/blob/v1.0.0/README.md
|
||||
[ftp-issue]: https://github.com/hassio-addons/addon-ftp/issues
|
||||
[ftp-version-shield]: https://img.shields.io/badge/version-v1.0.0-blue.svg
|
||||
[ftp-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/ftp-armhf.svg
|
||||
[ftp-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
|
||||
[ftp-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
||||
[ftp-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
||||
[ftp-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
|
||||
[addon-control-panel]: https://github.com/hassio-addons/addon-control-panel/tree/v1.0.0
|
||||
[addon-doc-control-panel]: https://github.com/hassio-addons/addon-control-panel/blob/v1.0.0/README.md
|
||||
[control-panel-issue]: https://github.com/hassio-addons/addon-control-panel/issues
|
||||
|
|
8
ftp/CHANGELOG.md
Normal file
8
ftp/CHANGELOG.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
[Full Changelog][v0.2.0-v1.0.0]
|
||||
|
||||
### Changed
|
||||
|
||||
- Updated add-on icon & logo
|
||||
- Upgrades add-on base image to v1.3.3
|
||||
|
||||
[v0.2.0-v1.0.0]: https://github.com/hassio-addons/addon-ftp/compare/v0.2.0...v1.0.0
|
87
ftp/config.json
Normal file
87
ftp/config.json
Normal file
|
@ -0,0 +1,87 @@
|
|||
{
|
||||
"name": "FTP",
|
||||
"version": "1.0.0",
|
||||
"slug": "ftp",
|
||||
"description": "A secure and fast FTP server for Hass.io",
|
||||
"url": "https://community.home-assistant.io/t/community-hass-io-add-on-ftp/36799?u=frenck",
|
||||
"startup": "services",
|
||||
"boot": "auto",
|
||||
"hassio_api": true,
|
||||
"homeassistant_api": false,
|
||||
"host_network": true,
|
||||
"privileged": [
|
||||
"SYS_ADMIN"
|
||||
],
|
||||
"map": [
|
||||
"addons:rw",
|
||||
"backup:rw",
|
||||
"config:rw",
|
||||
"share:rw",
|
||||
"ssl:rw"
|
||||
],
|
||||
"options": {
|
||||
"log_level": "info",
|
||||
"port": 21,
|
||||
"data_port": 20,
|
||||
"banner": "Welcome to the Hass.io FTP service.",
|
||||
"pasv": true,
|
||||
"pasv_min_port": 30000,
|
||||
"pasv_max_port": 30010,
|
||||
"pasv_address": "",
|
||||
"ssl": false,
|
||||
"certfile": "fullchain.pem",
|
||||
"keyfile": "privkey.pem",
|
||||
"implicit_ssl": false,
|
||||
"max_clients": 5,
|
||||
"users": [
|
||||
{
|
||||
"username": "hassio",
|
||||
"password": "changeme",
|
||||
"allow_chmod": false,
|
||||
"allow_download": false,
|
||||
"allow_upload": false,
|
||||
"allow_dirlist": true,
|
||||
"addons": false,
|
||||
"backup": false,
|
||||
"config": false,
|
||||
"share": true,
|
||||
"ssl": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"schema": {
|
||||
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
|
||||
"port": "port",
|
||||
"data_port": "port",
|
||||
"banner": "str",
|
||||
"pasv": "bool",
|
||||
"pasv_min_port": "port",
|
||||
"pasv_max_port": "port",
|
||||
"pasv_address": "str",
|
||||
"ssl": "bool",
|
||||
"certfile": "str",
|
||||
"keyfile": "str",
|
||||
"implicit_ssl": "bool",
|
||||
"max_clients": "int",
|
||||
"users": [
|
||||
{
|
||||
"username": "match(^[a-zA-Z0-9\\d](?:[a-zA-Z0-9\\d]|-(?=[a-zA-Z0-9\\d])){0,32}$)",
|
||||
"password": "str",
|
||||
"allow_chmod": "bool",
|
||||
"allow_download": "bool",
|
||||
"allow_upload": "bool",
|
||||
"allow_dirlist": "bool",
|
||||
"addons": "bool",
|
||||
"backup": "bool",
|
||||
"config": "bool",
|
||||
"share": "bool",
|
||||
"ssl": "bool"
|
||||
}
|
||||
]
|
||||
},
|
||||
"environment": {
|
||||
"LOG_FORMAT": "{LEVEL}: {MESSAGE}",
|
||||
"SUPERVISOR_VERSION": ">=0.82.0"
|
||||
},
|
||||
"image": "hassioaddons/ftp-{arch}"
|
||||
}
|
BIN
ftp/icon.png
Normal file
BIN
ftp/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
BIN
ftp/logo.png
Normal file
BIN
ftp/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 36 KiB |
Loading…
Add table
Add a link
Reference in a new issue