🎉 Release of add-on AdGuard Home 0.1.0

This commit is contained in:
Community Hass.io Add-ons Bot 2019-01-10 21:40:39 +00:00
parent 237500ad28
commit 3a9d334921
6 changed files with 109 additions and 0 deletions

View file

@ -33,6 +33,19 @@ https://github.com/hassio-addons/repository
## Add-ons provided by this repository
### ✓ [AdGuard Home][addon-adguard]
![Latest Version][adguard-version-shield]
![Supports armhf Architecture][adguard-armhf-shield]
![Supports aarch64 Architecture][adguard-aarch64-shield]
![Supports amd64 Architecture][adguard-amd64-shield]
![Supports i386 Architecture][adguard-i386-shield]
![Docker Pulls][adguard-pulls-shield]
Network-wide ads & trackers blocking DNS server.
[:books: AdGuard Home add-on documentation][addon-doc-adguard]
### ✓ [AirCast][addon-aircast]
![Latest Version][aircast-version-shield]
@ -444,6 +457,7 @@ You could also open an issue here on GitHub. Note, we use a separate
GitHub repository for each add-on. Please ensure you are creating the issue
on the correct GitHub repository matching the add-on.
- [Open an issue for the add-on: AdGuard Home][adguard-issue]
- [Open an issue for the add-on: AirCast][aircast-issue]
- [Open an issue for the add-on: AirSonos][airsonos-issue]
- [Open an issue for the add-on: AppDaemon][appdaemon3-issue]
@ -523,6 +537,15 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
[addon-adguard]: https://github.com/hassio-addons/addon-adguard-home/tree/v0.1.0
[addon-doc-adguard]: https://github.com/hassio-addons/addon-adguard-home/blob/v0.1.0/README.md
[adguard-issue]: https://github.com/hassio-addons/addon-adguard-home/issues
[adguard-version-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg
[adguard-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/adguard.svg
[adguard-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[adguard-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[adguard-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[adguard-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-aircast]: https://github.com/hassio-addons/addon-aircast/tree/v1.1.0
[addon-doc-aircast]: https://github.com/hassio-addons/addon-aircast/blob/v1.1.0/README.md
[aircast-issue]: https://github.com/hassio-addons/addon-aircast/issues

1
adguard/CHANGELOG.md Normal file
View file

@ -0,0 +1 @@
🎉 Initial release

40
adguard/README.md Normal file
View file

@ -0,0 +1,40 @@
# Community Hass.io Add-ons: AdGuard Home
[![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield]
[![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum]
[![Buy me a coffee][buymeacoffee-shield]][buymeacoffee]
[![Support my work on Patreon][patreon-shield]][patreon]
Network-wide ads & trackers blocking DNS server.
## About
AdGuard Home is a network-wide ad-and-tracker blocking DNS server with
parental control (adult content blocking) capabilities. Its purpose is to let
you control your entire network and all your devices, and it does not require
using a client-side program.
AdGuard Home provides a beautiful, easy and feature-rich web interface to
easily manage the filtering process and its settings.
[Click here for the full documentation][docs]
![AdGuard Home in the Home Assistant frontend][screenshot]
[buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg
[buymeacoffee]: https://www.buymeacoffee.com/frenck
[discord-shield]: https://img.shields.io/discord/478094546522079232.svg
[discord]: https://discord.me/hassioaddons
[docs]: https://github.com/hassio-addons/addon-adguard-home/blob/v0.1.0/README.md
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[forum]: https://community.home-assistant.io/t/community-hass-io-add-on-adguard-home/90684?u=frenck
[maintenance-shield]: https://img.shields.io/maintenance/yes/2019.svg
[patreon-shield]: https://www.frenck.nl/images/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-v0.1.0-blue.svg
[release]: https://github.com/hassio-addons/addon-adguard-home/tree/v0.1.0
[screenshot]: https://github.com/hassio-addons/addon-adguard-home/raw/v0.1.0/images/screenshot.png

45
adguard/config.json Normal file
View file

@ -0,0 +1,45 @@
{
"name": "AdGuard Home",
"version": "0.1.0",
"slug": "adguard",
"description": "Network-wide ads & trackers blocking DNS server.",
"url": "https://github.com/hassio-addons/addon-adguard-home",
"webui": "[PROTO:ssl]://[HOST]:[PORT:3210]",
"startup": "services",
"arch": [
"aarch64",
"amd64",
"armhf",
"i386"
],
"boot": "auto",
"hassio_api": true,
"hassio_role": "default",
"auth_api": true,
"homeassistant_api": false,
"host_network": true,
"map": [
"ssl"
],
"options": {
"log_level": "info",
"dns_port": 53,
"admin_port": 3210,
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"dns_port": "port",
"admin_port": "port",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"leave_front_door_open": "bool?"
},
"environment": {
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
},
"image": "hassioaddons/adguard"
}

BIN
adguard/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
adguard/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB