⬆️ Updating add-on AdGuard Home to 50f58d4

This commit is contained in:
Community Hass.io Add-ons Bot 2019-01-08 23:22:42 +00:00
parent 345ec06d2a
commit 449ddad800
6 changed files with 121 additions and 0 deletions

View file

@ -41,6 +41,19 @@ https://github.com/hassio-addons/repository-edge
## 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]
@ -477,6 +490,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]
@ -558,6 +572,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/50f58d4
[addon-doc-adguard]: https://github.com/hassio-addons/addon-adguard-home/blob/50f58d4/README.md
[adguard-issue]: https://github.com/hassio-addons/addon-adguard-home/issues
[adguard-version-shield]: https://img.shields.io/badge/version-50f58d4-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/998d463
[addon-doc-aircast]: https://github.com/hassio-addons/addon-aircast/blob/998d463/README.md
[aircast-issue]: https://github.com/hassio-addons/addon-aircast/issues

3
adguard/CHANGELOG.md Normal file
View file

@ -0,0 +1,3 @@
2019/01/08 23:13 UTC - [50f58d4](https://github.com/hassio-addons/addon-adguard-home/commit/50f58d478caf47337c30b22cf8aba8c0e537a389) by [@frenck](https://github.com/frenck)
> :shirt: Fixes yamllint linter warnings

50
adguard/README.md Normal file
View file

@ -0,0 +1,50 @@
# 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
Lorem ipsum.
[Click here for the full documentation][docs]
## WARNING! THIS IS AN EDGE VERSION!
This Hass.io Add-ons repository contains edge builds of add-ons. Edge builds
add-ons are based upon the latest development version.
- They may not work at all.
- They might stop working at any time.
- They could have a negative impact on your system.
This repository was created for:
- Anybody willing to test.
- Anybody interested in trying out upcoming add-ons or add-on features.
- Developers.
If you are more interested in stable releases of our add-ons:
<https://github.com/hassio-addons/repository>
[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/50f58d4/README.md
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[forum]: https://community.home-assistant.io/?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-50f58d4-blue.svg
[release]: https://github.com/hassio-addons/addon-adguard-home/tree/50f58d4

45
adguard/config.json Normal file
View file

@ -0,0 +1,45 @@
{
"name": "AdGuard Home",
"version": "50f58d4",
"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": true,
"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