├── .README.j2 ├── .addons.yml ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── dependabot.yaml └── workflows │ ├── labels.yaml │ ├── lint.yaml │ ├── lock.yaml │ ├── pr-labels.yaml │ ├── repository-updater.yaml │ └── stale.yaml ├── .gitignore ├── .mdlrc ├── .yamllint ├── LICENSE.md ├── README.md ├── adguard ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── aircast ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ └── en.yaml ├── airsonos ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ └── en.yaml ├── appdaemon ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ └── en.yaml ├── bazarr ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── bitwarden ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ └── en.yaml ├── bookstack ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── chrony ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── emqx ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── example ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ └── en.yaml ├── foldingathome ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── ftp ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── glances ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── grafana ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── grocy ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── influxdb ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── jupyterlab ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── lidarr ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── log-viewer ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ └── en.yaml ├── motioneye ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ └── en.yaml ├── mqtt-io ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml └── translations │ └── en.yaml ├── nginxproxymanager ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ └── en.yaml ├── node-red ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── nut ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── overseerr ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── phpmyadmin ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ └── en.yaml ├── plex ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ └── en.yaml ├── prowlarr ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── radarr ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── readarr ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── repository.json ├── sabnzbd ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── sonarr ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── spotify ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ ├── en.yaml │ ├── hu.yaml │ └── it.yaml ├── sqlite-web ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ └── en.yaml ├── ssh ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── tailscale ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ └── en.yaml ├── tasmoadmin ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ └── en.yaml ├── tautulli ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ └── en.yaml ├── thelounge ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── tor ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ └── en.yaml ├── traccar ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ └── en.yaml ├── unifi ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations │ ├── en.yaml │ ├── fr.yaml │ ├── pl.yaml │ └── pt-BR.yaml ├── uptime-kuma ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── vscode ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── whisparr ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── wireguard ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png ├── zerotier ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png └── logo.png └── zwave-js-ui ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.yaml ├── icon.png ├── logo.png └── translations └── en.yaml /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | .github/* @frenck 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | When contributing to this repository, please first discuss the change you wish 4 | to make via issue, email, or any other method with the owners of this repository 5 | before making a change. 6 | 7 | Please note we have a code of conduct, please follow it in all your interactions 8 | with the project. 9 | 10 | ## Issues and feature requests 11 | 12 | You've found a bug in the source code, a mistake in the documentation or maybe 13 | you'd like a new feature? You can help us by submitting an issue to our 14 | [GitHub Repository][github]. Before you create an issue, make sure you search 15 | the archive, maybe your question was already answered. 16 | 17 | Even better: You could submit a pull request with a fix / new feature! 18 | 19 | ## Pull request process 20 | 21 | 1. Search our repository for open or closed [pull requests][prs] that relates 22 | to your submission. You don't want to duplicate effort. 23 | 24 | 1. You may merge the pull request in once you have the sign-off of two other 25 | developers, or if you do not have permission to do that, you may request 26 | the second reviewer to merge it for you. 27 | 28 | [github]: https://github.com/hassio-addons/repository-beta/issues 29 | [prs]: https://github.com/hassio-addons/repository-beta/pulls -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | --- 2 | github: frenck 3 | patreon: frenck 4 | custom: https://frenck.dev/donate/ 5 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Problem/Motivation 2 | 3 | > (Why the issue was filed) 4 | 5 | ## Expected behavior 6 | 7 | > (What you expected to happen) 8 | 9 | ## Actual behavior 10 | 11 | > (What actually happened) 12 | 13 | ## Steps to reproduce 14 | 15 | > (How can someone else make/see it happen) 16 | 17 | ## Proposed changes 18 | 19 | > (If you have a proposed change, workaround or fix, 20 | > describe the rationale behind it) 21 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Proposed Changes 2 | 3 | > (Describe the changes and rationale behind them) 4 | 5 | ## Related Issues 6 | 7 | > ([Github link][autolink-references] to related issues or pull requests) 8 | 9 | [autolink-references]: https://help.github.com/articles/autolinked-references-and-urls/ -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | version: 2 3 | updates: 4 | - package-ecosystem: "github-actions" 5 | directory: "/" 6 | schedule: 7 | interval: daily 8 | time: "06:00" 9 | -------------------------------------------------------------------------------- /.github/workflows/labels.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Sync labels 3 | 4 | # yamllint disable-line rule:truthy 5 | on: 6 | schedule: 7 | - cron: "34 5 * * *" 8 | workflow_dispatch: 9 | 10 | jobs: 11 | workflows: 12 | uses: hassio-addons/workflows/.github/workflows/labels.yaml@main 13 | -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Lint 3 | 4 | # yamllint disable-line rule:truthy 5 | on: 6 | push: 7 | pull_request: 8 | types: 9 | - opened 10 | - reopened 11 | - synchronize 12 | workflow_dispatch: 13 | 14 | jobs: 15 | workflows: 16 | uses: hassio-addons/workflows/.github/workflows/repository-lint.yaml@main 17 | -------------------------------------------------------------------------------- /.github/workflows/lock.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Lock 3 | 4 | # yamllint disable-line rule:truthy 5 | on: 6 | schedule: 7 | - cron: "0 9 * * *" 8 | workflow_dispatch: 9 | 10 | jobs: 11 | workflows: 12 | uses: hassio-addons/workflows/.github/workflows/lock.yaml@main 13 | -------------------------------------------------------------------------------- /.github/workflows/pr-labels.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | name: PR Labels 3 | 4 | # yamllint disable-line rule:truthy 5 | on: 6 | pull_request_target: 7 | types: 8 | - opened 9 | - labeled 10 | - unlabeled 11 | - synchronize 12 | 13 | jobs: 14 | workflows: 15 | uses: hassio-addons/workflows/.github/workflows/pr-labels.yaml@main 16 | -------------------------------------------------------------------------------- /.github/workflows/repository-updater.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Repository Updater 3 | 4 | # yamllint disable-line rule:truthy 5 | on: 6 | repository_dispatch: 7 | types: ["update"] 8 | 9 | jobs: 10 | workflows: 11 | uses: hassio-addons/workflows/.github/workflows/repository-updater.yaml@main 12 | secrets: 13 | UPDATER_TOKEN: ${{ secrets.UPDATER_TOKEN }} 14 | -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Stale 3 | 4 | # yamllint disable-line rule:truthy 5 | on: 6 | schedule: 7 | - cron: "0 8 * * *" 8 | workflow_dispatch: 9 | 10 | jobs: 11 | workflows: 12 | uses: hassio-addons/workflows/.github/workflows/stale.yaml@main 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .translations 2 | -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- 1 | rules "~MD024" -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- 1 | --- 2 | ignore: | 3 | */translations/*.yaml 4 | */config.yaml 5 | */config.yml 6 | rules: 7 | braces: 8 | level: error 9 | min-spaces-inside: 0 10 | max-spaces-inside: 1 11 | min-spaces-inside-empty: -1 12 | max-spaces-inside-empty: -1 13 | brackets: 14 | level: error 15 | min-spaces-inside: 0 16 | max-spaces-inside: 0 17 | min-spaces-inside-empty: -1 18 | max-spaces-inside-empty: -1 19 | colons: 20 | level: error 21 | max-spaces-before: 0 22 | max-spaces-after: 1 23 | commas: 24 | level: error 25 | max-spaces-before: 0 26 | min-spaces-after: 1 27 | max-spaces-after: 1 28 | comments: 29 | level: error 30 | require-starting-space: true 31 | min-spaces-from-content: 2 32 | comments-indentation: 33 | level: error 34 | document-end: 35 | level: error 36 | present: false 37 | document-start: 38 | level: error 39 | present: true 40 | empty-lines: 41 | level: error 42 | max: 1 43 | max-start: 0 44 | max-end: 1 45 | hyphens: 46 | level: error 47 | max-spaces-after: 1 48 | indentation: 49 | level: error 50 | spaces: 2 51 | indent-sequences: true 52 | check-multi-line-strings: false 53 | key-duplicates: 54 | level: error 55 | line-length: 56 | level: warning 57 | max: 120 58 | allow-non-breakable-words: true 59 | allow-non-breakable-inline-mappings: true 60 | new-line-at-end-of-file: 61 | level: error 62 | new-lines: 63 | level: error 64 | type: unix 65 | trailing-spaces: 66 | level: error 67 | truthy: 68 | level: error 69 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # MIT License 2 | 3 | Copyright (c) 2018-2024 Franck Nijhof 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /adguard/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.5 @[renovate[bot]](https://github.com/apps/renovate) ([#601](https://github.com/hassio-addons/addon-adguard-home/pull/601)) 6 | - ⬆️ Update alpine_3_21/yq-go to v4.44.5-r5 @[renovate[bot]](https://github.com/apps/renovate) ([#603](https://github.com/hassio-addons/addon-adguard-home/pull/603)) 7 | - ⬆️ Update AdguardTeam/AdGuardHome to v0.107.62 @[renovate[bot]](https://github.com/apps/renovate) ([#605](https://github.com/hassio-addons/addon-adguard-home/pull/605)) 8 | -------------------------------------------------------------------------------- /adguard/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: AdGuard Home 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] 8 | 9 | [![Support Frenck on Patreon][patreon-shield]][patreon] 10 | 11 | Network-wide ads & trackers blocking DNS server. 12 | 13 | ## About 14 | 15 | AdGuard Home is a network-wide ad-and-tracker blocking DNS server with 16 | parental control (adult content blocking) capabilities. Its purpose is to let 17 | you control your entire network and all your devices, and it does not require 18 | using a client-side program. 19 | 20 | AdGuard Home provides a beautiful, easy and feature-rich web interface to 21 | easily manage the filtering process and its settings. 22 | 23 | ![AdGuard Home in the Home Assistant frontend][screenshot] 24 | 25 | ## WARNING! THIS IS A BETA VERSION! 26 | 27 | This Home Assistant Add-ons repository contains beta releases of add-ons. 28 | 29 | - They might stop working at any time. 30 | - They could have a negative impact on your system. 31 | 32 | This repository was created for: 33 | 34 | - Anybody willing to test. 35 | - Anybody interested in trying out upcoming add-ons or add-on features. 36 | 37 | If you are more interested in stable releases of our add-ons: 38 | 39 | 40 | 41 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 42 | [discord]: https://discord.me/hassioaddons 43 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 44 | [forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-adguard-home/90684?u=frenck 45 | [github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png 46 | [github-sponsors]: https://github.com/sponsors/frenck 47 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 48 | [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png 49 | [patreon]: https://www.patreon.com/frenck 50 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg 51 | [release-shield]: https://img.shields.io/badge/version-v5.2.10-blue.svg 52 | [release]: https://github.com/hassio-addons/addon-adguard-home/tree/v5.2.10 53 | [screenshot]: https://github.com/hassio-addons/addon-adguard-home/raw/v5.2.10/images/screenshot.png -------------------------------------------------------------------------------- /adguard/config.yaml: -------------------------------------------------------------------------------- 1 | name: AdGuard Home 2 | version: 5.2.10 3 | slug: adguard 4 | description: Network-wide ads & trackers blocking DNS server 5 | url: https://github.com/hassio-addons/addon-adguard-home 6 | codenotary: codenotary@frenck.dev 7 | ingress: true 8 | ingress_port: 0 9 | ingress_stream: true 10 | panel_icon: mdi:shield-check 11 | startup: services 12 | homeassistant: 0.113.2 13 | arch: 14 | - aarch64 15 | - amd64 16 | - armv7 17 | init: false 18 | ports: 19 | 53/udp: 53 20 | 80/tcp: null 21 | ports_description: 22 | 53/udp: DNS server port 23 | 80/tcp: Web interface (Not required for Ingress) 24 | discovery: 25 | - adguard 26 | auth_api: true 27 | host_network: true 28 | hassio_api: true 29 | hassio_role: manager 30 | map: 31 | - ssl 32 | options: 33 | ssl: true 34 | certfile: fullchain.pem 35 | keyfile: privkey.pem 36 | schema: 37 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 38 | ssl: bool 39 | certfile: str 40 | keyfile: str 41 | leave_front_door_open: bool? 42 | backup_exclude: 43 | - '*/adguard/data/querylog.*' 44 | image: ghcr.io/hassio-addons/adguard/{arch} 45 | -------------------------------------------------------------------------------- /adguard/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/adguard/icon.png -------------------------------------------------------------------------------- /adguard/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/adguard/logo.png -------------------------------------------------------------------------------- /aircast/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🧰 Maintenance 4 | 5 | - 🎆 Updates maintenance/license year to 2025 @frenck ([#220](https://github.com/hassio-addons/addon-aircast/pull/220)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update ghcr.io/hassio-addons/debian-base Docker tag to v7.6.3 @[renovate[bot]](https://github.com/apps/renovate) ([#219](https://github.com/hassio-addons/addon-aircast/pull/219)) 10 | - ⬆️ Update ghcr.io/hassio-addons/debian-base Docker tag to v7.7.0 @[renovate[bot]](https://github.com/apps/renovate) ([#221](https://github.com/hassio-addons/addon-aircast/pull/221)) 11 | -------------------------------------------------------------------------------- /aircast/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: AirCast 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] 8 | 9 | [![Support Frenck on Patreon][patreon-shield]][patreon] 10 | 11 | AirPlay capabilities for your Chromecast players. 12 | 13 | ## About 14 | 15 | Apple devices use AirPlay to send audio to other devices, but this is not 16 | compatible with Google's Chromecast. This add-on tries to solve this 17 | compatibility gap. 18 | 19 | It detects Chromecast players in your network and creates virtual AirPlay 20 | devices for each of them. It acts as a bridge between the AirPlay client 21 | and the real Chromecast player. 22 | 23 | The AirCast add-on is based on the excellent [AirConnect][airconnect] project. 24 | 25 | ## WARNING! THIS IS A BETA VERSION! 26 | 27 | This Home Assistant Add-ons repository contains beta releases of add-ons. 28 | 29 | - They might stop working at any time. 30 | - They could have a negative impact on your system. 31 | 32 | This repository was created for: 33 | 34 | - Anybody willing to test. 35 | - Anybody interested in trying out upcoming add-ons or add-on features. 36 | 37 | If you are more interested in stable releases of our add-ons: 38 | 39 | 40 | 41 | [airconnect]: https://github.com/philippe44/AirConnect 42 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 43 | [discord]: https://discord.me/hassioaddons 44 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 45 | [forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-aircast/36742?u=frenck 46 | [github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png 47 | [github-sponsors]: https://github.com/sponsors/frenck 48 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 49 | [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png 50 | [patreon]: https://www.patreon.com/frenck 51 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg 52 | [release-shield]: https://img.shields.io/badge/version-v4.2.4-blue.svg 53 | [release]: https://github.com/hassio-addons/addon-aircast/tree/v4.2.4 -------------------------------------------------------------------------------- /aircast/config.yaml: -------------------------------------------------------------------------------- 1 | name: AirCast 2 | version: 4.2.4 3 | slug: aircast 4 | description: AirPlay capabilities for your Chromecast devices. 5 | url: https://github.com/hassio-addons/addon-aircast 6 | codenotary: codenotary@frenck.dev 7 | startup: services 8 | init: false 9 | arch: 10 | - aarch64 11 | - amd64 12 | - armv7 13 | hassio_api: true 14 | host_network: true 15 | map: 16 | - addon_config:rw 17 | - homeassistant_config:rw 18 | options: 19 | latency_rtp: 0 20 | latency_http: 0 21 | drift: false 22 | schema: 23 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 24 | address: str? 25 | latency_rtp: int 26 | latency_http: int 27 | drift: bool 28 | image: ghcr.io/hassio-addons/aircast/{arch} 29 | -------------------------------------------------------------------------------- /aircast/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/aircast/icon.png -------------------------------------------------------------------------------- /aircast/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/aircast/logo.png -------------------------------------------------------------------------------- /aircast/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: >- 6 | Controls the level of log details the add-on provides. 7 | address: 8 | name: Address 9 | description: >- 10 | Allows you to specify the IP address the AirCast server needs to 11 | bind to. 12 | latency_rtp: 13 | name: RTP Latency 14 | description: >- 15 | Allows you to tweak the buffering, which is needed when the audio is 16 | stuttering (e.g., low-quality network). This option specifies the number 17 | of ms the add-on has to buffer the RTP audio (AirPlay). Setting this value 18 | below 500ms is not recommended! Setting the value to 0 makes the add-on 19 | to get the value from AirPlay. 20 | latency_http: 21 | name: HTTP Latency 22 | description: >- 23 | Allows you to tweak the buffering, which is needed when the audio is 24 | stuttering (e.g., low-quality network). This option specifies the number 25 | of ms the add-on has to buffer the HTTP audio. 26 | drift: 27 | name: Drift 28 | description: >- 29 | Allow to let timing reference drift (no click). 30 | -------------------------------------------------------------------------------- /airsonos/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🧰 Maintenance 4 | 5 | - 🎆 Updates maintenance/license year to 2025 @frenck ([#178](https://github.com/hassio-addons/addon-airsonos/pull/178)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update ghcr.io/hassio-addons/debian-base Docker tag to v7.6.3 @[renovate[bot]](https://github.com/apps/renovate) ([#177](https://github.com/hassio-addons/addon-airsonos/pull/177)) 10 | - ⬆️ Update ghcr.io/hassio-addons/debian-base Docker tag to v7.7.0 @[renovate[bot]](https://github.com/apps/renovate) ([#179](https://github.com/hassio-addons/addon-airsonos/pull/179)) 11 | - ⬆️ Update ghcr.io/hassio-addons/debian-base Docker tag to v7.7.1 @[renovate[bot]](https://github.com/apps/renovate) ([#180](https://github.com/hassio-addons/addon-airsonos/pull/180)) 12 | -------------------------------------------------------------------------------- /airsonos/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: AirSonos 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] 8 | 9 | [![Support Frenck on Patreon][patreon-shield]][patreon] 10 | 11 | AirPlay capabilities for your Sonos (and UPnP) players. 12 | 13 | ## About 14 | 15 | Apple devices use AirPlay to send audio to other devices, but this is not 16 | compatible with Sonos players. This add-on tries to solve this 17 | compatibility gap. 18 | 19 | It detects Sonos players in your network and creates virtual AirPlay 20 | devices for each of them. It acts as a bridge between the AirPlay client 21 | and the real Sonos device. 22 | 23 | Since Sonos uses UPnP, the add-on might also work for other UPnP players 24 | (e.g., newer Samsung televisions). 25 | 26 | The AirCast add-on is based on the excellent [AirConnect][airconnect] project. 27 | 28 | ## WARNING! THIS IS A BETA VERSION! 29 | 30 | This Home Assistant Add-ons repository contains beta releases of add-ons. 31 | 32 | - They might stop working at any time. 33 | - They could have a negative impact on your system. 34 | 35 | This repository was created for: 36 | 37 | - Anybody willing to test. 38 | - Anybody interested in trying out upcoming add-ons or add-on features. 39 | 40 | If you are more interested in stable releases of our add-ons: 41 | 42 | 43 | 44 | [airconnect]: https://github.com/philippe44/AirConnect 45 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 46 | [discord]: https://discord.me/hassioaddons 47 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 48 | [forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-airsonos/36796?u=frenck 49 | [github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png 50 | [github-sponsors]: https://github.com/sponsors/frenck 51 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 52 | [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png 53 | [patreon]: https://www.patreon.com/frenck 54 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg 55 | [release-shield]: https://img.shields.io/badge/version-v4.2.4-blue.svg 56 | [release]: https://github.com/hassio-addons/addon-airsonos/tree/v4.2.4 -------------------------------------------------------------------------------- /airsonos/config.yaml: -------------------------------------------------------------------------------- 1 | name: AirSonos 2 | version: 4.2.4 3 | slug: airsonos 4 | description: AirPlay capabilities for your Sonos (and UPnP) devices. 5 | url: https://github.com/hassio-addons/addon-airsonos 6 | codenotary: codenotary@frenck.dev 7 | startup: services 8 | init: false 9 | arch: 10 | - aarch64 11 | - amd64 12 | - armv7 13 | hassio_api: true 14 | host_network: true 15 | map: 16 | - addon_config:rw 17 | - homeassistant_config:rw 18 | options: 19 | port: 49152 20 | latency_rtp: 1000 21 | latency_http: 2000 22 | drift: false 23 | schema: 24 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 25 | address: str? 26 | port: port 27 | latency_rtp: int 28 | latency_http: int 29 | drift: bool 30 | image: ghcr.io/hassio-addons/airsonos/{arch} 31 | -------------------------------------------------------------------------------- /airsonos/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/airsonos/icon.png -------------------------------------------------------------------------------- /airsonos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/airsonos/logo.png -------------------------------------------------------------------------------- /airsonos/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: >- 6 | Controls the level of log details the add-on provides. 7 | port: 8 | name: Port 9 | description: >- 10 | The port to run on, the default of 49152 should be good for most cases. 11 | address: 12 | name: Address 13 | description: >- 14 | Allows you to specify the IP address the AirCast server needs to 15 | bind to. 16 | latency_rtp: 17 | name: RTP Latency 18 | description: >- 19 | Allows you to tweak the buffering, which is needed when the audio is 20 | stuttering (e.g., low-quality network). This option specifies the number 21 | of ms the add-on has to buffer the RTP audio (AirPlay). Setting this value 22 | below 500ms is not recommended! Setting the value to 0 makes the add-on 23 | to get the value from AirPlay. 24 | latency_http: 25 | name: HTTP Latency 26 | description: >- 27 | Allows you to tweak the buffering, which is needed when the audio is 28 | stuttering (e.g., low-quality network). This option specifies the number 29 | of ms the add-on has to buffer the HTTP audio. 30 | drift: 31 | name: Drift 32 | description: >- 33 | Allow to let timing reference drift (no click). 34 | -------------------------------------------------------------------------------- /appdaemon/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update appdaemon to v4.5.4 @[renovate[bot]](https://github.com/apps/renovate) ([#397](https://github.com/hassio-addons/addon-appdaemon/pull/397)) 6 | - ⬆️ Update appdaemon to v4.5.5 @[renovate[bot]](https://github.com/apps/renovate) ([#401](https://github.com/hassio-addons/addon-appdaemon/pull/401)) 7 | - ⬆️ Update appdaemon to v4.5.7 @[renovate[bot]](https://github.com/apps/renovate) ([#404](https://github.com/hassio-addons/addon-appdaemon/pull/404)) 8 | -------------------------------------------------------------------------------- /appdaemon/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: AppDaemon 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] 8 | 9 | [![Support Frenck on Patreon][patreon-shield]][patreon] 10 | 11 | Python Apps and HADashboard for Home Assistant 12 | 13 | ## About 14 | 15 | [AppDaemon][appdaemon] is a loosely coupled, multithreaded, sandboxed Python 16 | execution environment for writing automation apps for Home Assistant home 17 | automation software. It also provides a configurable dashboard (HADashboard) 18 | suitable for wall mounted tablets. 19 | 20 | ![HADashboard screenshot][screenshot] 21 | 22 | ## WARNING! THIS IS A BETA VERSION! 23 | 24 | This Home Assistant Add-ons repository contains beta releases of add-ons. 25 | 26 | - They might stop working at any time. 27 | - They could have a negative impact on your system. 28 | 29 | This repository was created for: 30 | 31 | - Anybody willing to test. 32 | - Anybody interested in trying out upcoming add-ons or add-on features. 33 | 34 | If you are more interested in stable releases of our add-ons: 35 | 36 | 37 | 38 | [appdaemon]: https://appdaemon.readthedocs.io 39 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 40 | [discord]: https://discord.me/hassioaddons 41 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 42 | [forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-appdaemon-4/163259?u=frenck 43 | [github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png 44 | [github-sponsors]: https://github.com/sponsors/frenck 45 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 46 | [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png 47 | [patreon]: https://www.patreon.com/frenck 48 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 49 | [release-shield]: https://img.shields.io/badge/version-v0.17.3-blue.svg 50 | [release]: https://github.com/hassio-addons/addon-appdaemon/tree/v0.17.3 51 | [screenshot]: https://github.com/hassio-addons/addon-appdaemon/raw/main/images/screenshot.png -------------------------------------------------------------------------------- /appdaemon/config.yaml: -------------------------------------------------------------------------------- 1 | name: AppDaemon 2 | version: 0.17.3 3 | slug: appdaemon 4 | description: Python Apps and Dashboard using AppDaemon 4.x for Home Assistant 5 | url: https://github.com/hassio-addons/addon-appdaemon 6 | codenotary: codenotary@frenck.dev 7 | webui: http://[HOST]:[PORT:5050] 8 | arch: 9 | - aarch64 10 | - amd64 11 | init: false 12 | homeassistant_api: true 13 | uart: true 14 | ports: 15 | 5050/tcp: 5050 16 | ports_description: 17 | 5050/tcp: AppDaemon 18 | map: 19 | - addon_config:rw 20 | - homeassistant_config:rw 21 | - media:rw 22 | - share:rw 23 | - ssl 24 | options: 25 | system_packages: [] 26 | python_packages: [] 27 | init_commands: [] 28 | schema: 29 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 30 | system_packages: 31 | - str 32 | python_packages: 33 | - str 34 | init_commands: 35 | - str 36 | image: ghcr.io/hassio-addons/appdaemon/{arch} 37 | -------------------------------------------------------------------------------- /appdaemon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/appdaemon/icon.png -------------------------------------------------------------------------------- /appdaemon/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/appdaemon/logo.png -------------------------------------------------------------------------------- /appdaemon/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: >- 6 | Controls the level of log details the add-on provides. 7 | system_packages: 8 | name: System packages 9 | description: >- 10 | Allows you to specificy a list of additional Alpine Linux packages to be 11 | installed before AppDaemon starts. 12 | python_packages: 13 | name: Python packages 14 | description: >- 15 | Allows you to specificy a list of additional Python packages to be 16 | installed before AppDaemon starts. 17 | init_commands: 18 | name: Init commands 19 | description: >- 20 | Allows you to specificy a list of custom shell commands that are ran 21 | before AppDaemon starts. 22 | network: 23 | 5050/tcp: The AppDaemon webserver 24 | -------------------------------------------------------------------------------- /bazarr/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.0.2 @[renovate[bot]](https://github.com/apps/renovate) ([#49](https://github.com/hassio-addons/addon-bazarr/pull/49)) 6 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.0 @[renovate[bot]](https://github.com/apps/renovate) ([#50](https://github.com/hassio-addons/addon-bazarr/pull/50)) 7 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.1 @[renovate[bot]](https://github.com/apps/renovate) ([#51](https://github.com/hassio-addons/addon-bazarr/pull/51)) 8 | - ⬆️ Update alpine_3_21/python3-dev to v3.12.9-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#53](https://github.com/hassio-addons/addon-bazarr/pull/53)) 9 | - ⬆️ Update alpine_3_21/python3 to v3.12.9-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#52](https://github.com/hassio-addons/addon-bazarr/pull/52)) 10 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.2 @[renovate[bot]](https://github.com/apps/renovate) ([#54](https://github.com/hassio-addons/addon-bazarr/pull/54)) 11 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.3 @[renovate[bot]](https://github.com/apps/renovate) ([#55](https://github.com/hassio-addons/addon-bazarr/pull/55)) 12 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.4 @[renovate[bot]](https://github.com/apps/renovate) ([#56](https://github.com/hassio-addons/addon-bazarr/pull/56)) 13 | - ⬆️ Update alpine_3_21/musl-dev to v1.2.5-r9 @[renovate[bot]](https://github.com/apps/renovate) ([#57](https://github.com/hassio-addons/addon-bazarr/pull/57)) 14 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.0 @[renovate[bot]](https://github.com/apps/renovate) ([#58](https://github.com/hassio-addons/addon-bazarr/pull/58)) 15 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.1 @[renovate[bot]](https://github.com/apps/renovate) ([#59](https://github.com/hassio-addons/addon-bazarr/pull/59)) 16 | - Migrate renovate config @[renovate[bot]](https://github.com/apps/renovate) ([#60](https://github.com/hassio-addons/addon-bazarr/pull/60)) 17 | -------------------------------------------------------------------------------- /bazarr/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Bazarr 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | Download and manage subtitles for Sonarr and Radarr. 8 | 9 | ## About 10 | 11 | [Bazarr] is a companion application to [Sonarr] and [Radarr] that manages and 12 | downloads subtitles based on your requirements. 13 | 14 | [Bazarr]: https://www.bazarr.media/ 15 | [Sonarr]: https://sonarr.tv/ 16 | [Radarr]: https://radarr.video/ 17 | 18 | ## WARNING! THIS IS A BETA VERSION! 19 | 20 | This Home Assistant Add-ons repository contains beta releases of add-ons. 21 | 22 | - They might stop working at any time. 23 | - They could have a negative impact on your system. 24 | 25 | This repository was created for: 26 | 27 | - Anybody willing to test. 28 | - Anybody interested in trying out upcoming add-ons or add-on features. 29 | 30 | If you are more interested in stable releases of our add-ons: 31 | 32 | 33 | 34 | [discord-shield]: https://img.shields.io/discord/330944238910963714.svg 35 | [discord]: https://discord.gg/c5DvZ4e 36 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 37 | [forum]: https://community.home-assistant.io/t/?u=frenck 38 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 39 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 40 | [release-shield]: https://img.shields.io/badge/version-v0.4.1-blue.svg 41 | [release]: https://github.com/hassio-addons/addon-bazarr/tree/v0.4.1 -------------------------------------------------------------------------------- /bazarr/config.yaml: -------------------------------------------------------------------------------- 1 | name: Bazarr 2 | version: 0.4.1 3 | slug: bazarr 4 | description: Download and manage subtitles for Sonarr and Radarr 5 | url: https://github.com/hassio-addons/addon-bazarr/tree/main/README.md 6 | codenotary: codenotary@frenck.dev 7 | webui: http://[HOST]:[PORT:6767] 8 | init: false 9 | arch: 10 | - aarch64 11 | - amd64 12 | - armv7 13 | map: 14 | - addon_config:rw 15 | - share:rw 16 | - media:rw 17 | ports: 18 | 6767/tcp: 6767 19 | image: ghcr.io/hassio-addons/bazarr/{arch} 20 | -------------------------------------------------------------------------------- /bazarr/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/bazarr/icon.png -------------------------------------------------------------------------------- /bazarr/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/bazarr/logo.png -------------------------------------------------------------------------------- /bitwarden/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update ghcr.io/hassio-addons/debian-base Docker tag to v7.7.1 @[renovate[bot]](https://github.com/apps/renovate) ([#345](https://github.com/hassio-addons/addon-bitwarden/pull/345)) 6 | -------------------------------------------------------------------------------- /bitwarden/config.yaml: -------------------------------------------------------------------------------- 1 | name: Vaultwarden (Bitwarden) 2 | version: 0.24.1 3 | slug: bitwarden 4 | description: Open source password management solution 5 | url: https://github.com/hassio-addons/addon-bitwarden 6 | codenotary: codenotary@frenck.dev 7 | webui: '[PROTO:ssl]://[HOST]:[PORT:7277]' 8 | init: false 9 | arch: 10 | - aarch64 11 | - amd64 12 | - armv7 13 | ports: 14 | 7277/tcp: 7277 15 | ports_description: 16 | 7277/tcp: Vaultwarden Web interface 17 | map: 18 | - ssl 19 | options: 20 | ssl: true 21 | certfile: fullchain.pem 22 | keyfile: privkey.pem 23 | schema: 24 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 25 | ssl: bool 26 | certfile: str 27 | keyfile: str 28 | request_size_limit: int? 29 | image: ghcr.io/hassio-addons/bitwarden/{arch} 30 | -------------------------------------------------------------------------------- /bitwarden/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/bitwarden/icon.png -------------------------------------------------------------------------------- /bitwarden/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/bitwarden/logo.png -------------------------------------------------------------------------------- /bitwarden/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: >- 6 | Controls the level of log details the add-on provides. 7 | ssl: 8 | name: SSL 9 | description: >- 10 | Enables/Disables SSL (HTTPS) on the web interface. 11 | certfile: 12 | name: Certificate file 13 | description: >- 14 | The certificate file to use for SSL. Note that this file must 15 | exist in the /ssl/ folder. 16 | keyfile: 17 | name: Private key file 18 | description: >- 19 | The private key file to use for SSL. Note that this file must 20 | exist in the /ssl/ folder. 21 | request_size_limit: 22 | name: Size limit of HTTP requests 23 | description: >- 24 | Optionally set the size limit of HTTP requests on the API of 25 | Vaultwarden. This might be needed to support larger imports. 26 | The default is 10485760, which is 10MB. 27 | network: 28 | 7277/tcp: Web interface 29 | -------------------------------------------------------------------------------- /bookstack/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update alpine_3_21/composer to v2.8.9-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#386](https://github.com/hassio-addons/addon-bookstack/pull/386)) 6 | - ⬆️ Update BookStackApp/BookStack to v25.02.5 @[renovate[bot]](https://github.com/apps/renovate) ([#387](https://github.com/hassio-addons/addon-bookstack/pull/387)) 7 | -------------------------------------------------------------------------------- /bookstack/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Bookstack 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Buy me a coffee][buymeacoffee-shield]][buymeacoffee] 8 | 9 | Bookstack: Simple & Free Wiki Software. 10 | 11 | ## About 12 | 13 | BookStack is a simple, self-hosted, easy-to-use platform for organising and 14 | storing information. 15 | 16 | ![Bookstack screenshot][screenshot] 17 | 18 | ## WARNING! THIS IS A BETA VERSION! 19 | 20 | This Home Assistant Add-ons repository contains beta releases of add-ons. 21 | 22 | - They might stop working at any time. 23 | - They could have a negative impact on your system. 24 | 25 | This repository was created for: 26 | 27 | - Anybody willing to test. 28 | - Anybody interested in trying out upcoming add-ons or add-on features. 29 | 30 | If you are more interested in stable releases of our add-ons: 31 | 32 | 33 | 34 | [buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg 35 | [buymeacoffee]: https://www.buymeacoffee.com/sinclairpaul 36 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 37 | [discord]: https://discord.me/hassioaddons 38 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 39 | [forum]: https://community.home-assistant.io/?u=frenck 40 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 41 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg 42 | [release-shield]: https://img.shields.io/badge/version-v3.0.1-blue.svg 43 | [release]: https://github.com/hassio-addons/addon-bookstack/tree/v3.0.1 44 | [screenshot]: https://github.com/hassio-addons/addon-bookstack/raw/main/images/screenshot.png -------------------------------------------------------------------------------- /bookstack/config.yaml: -------------------------------------------------------------------------------- 1 | name: Bookstack 2 | version: 3.0.1 3 | slug: bookstack 4 | description: Simple & Free Wiki Software 5 | url: https://github.com/hassio-addons/addon-bookstack 6 | codenotary: codenotary@frenck.dev 7 | webui: '[PROTO:ssl]://[HOST]:[PORT:80]' 8 | init: false 9 | arch: 10 | - aarch64 11 | - amd64 12 | - armv7 13 | services: 14 | - mysql:want 15 | map: 16 | - ssl 17 | ports: 18 | 80/tcp: 2665 19 | ports_description: 20 | 80/tcp: Web interface 21 | options: 22 | envvars: [] 23 | ssl: false 24 | certfile: fullchain.pem 25 | keyfile: privkey.pem 26 | schema: 27 | remote_mysql_host: str? 28 | remote_mysql_database: str? 29 | remote_mysql_username: str? 30 | remote_mysql_password: password? 31 | remote_mysql_port: int? 32 | show_appkey: bool? 33 | appkey: str? 34 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 35 | certfile: str 36 | keyfile: str 37 | ssl: bool 38 | envvars: 39 | - name: str 40 | value: str 41 | image: ghcr.io/hassio-addons/bookstack/{arch} 42 | -------------------------------------------------------------------------------- /bookstack/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/bookstack/icon.png -------------------------------------------------------------------------------- /bookstack/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/bookstack/logo.png -------------------------------------------------------------------------------- /chrony/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🧰 Maintenance 4 | 5 | - 🎆 Updates maintenance/license year to 2025 @frenck ([#190](https://github.com/hassio-addons/addon-chrony/pull/190)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.0.1 @[renovate[bot]](https://github.com/apps/renovate) ([#184](https://github.com/hassio-addons/addon-chrony/pull/184)) 10 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.0.2 @[renovate[bot]](https://github.com/apps/renovate) ([#185](https://github.com/hassio-addons/addon-chrony/pull/185)) 11 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.0 @[renovate[bot]](https://github.com/apps/renovate) ([#186](https://github.com/hassio-addons/addon-chrony/pull/186)) 12 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.1 @[renovate[bot]](https://github.com/apps/renovate) ([#187](https://github.com/hassio-addons/addon-chrony/pull/187)) 13 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.2 @[renovate[bot]](https://github.com/apps/renovate) ([#188](https://github.com/hassio-addons/addon-chrony/pull/188)) 14 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.3 @[renovate[bot]](https://github.com/apps/renovate) ([#189](https://github.com/hassio-addons/addon-chrony/pull/189)) 15 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.4 @[renovate[bot]](https://github.com/apps/renovate) ([#191](https://github.com/hassio-addons/addon-chrony/pull/191)) 16 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.0 @[renovate[bot]](https://github.com/apps/renovate) ([#192](https://github.com/hassio-addons/addon-chrony/pull/192)) 17 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.1 @[renovate[bot]](https://github.com/apps/renovate) ([#193](https://github.com/hassio-addons/addon-chrony/pull/193)) 18 | -------------------------------------------------------------------------------- /chrony/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: chrony 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Buy me a coffee][buymeacoffee-shield]][buymeacoffee] 8 | 9 | chrony NTP Server. 10 | 11 | ## About 12 | 13 | An NTP server accesible by all hosts on the local network, useful for setting 14 | time on devices with controlled internet access (such as cameras). 15 | 16 | ## WARNING! THIS IS A BETA VERSION! 17 | 18 | This Home Assistant Add-ons repository contains beta releases of add-ons. 19 | 20 | - They might stop working at any time. 21 | - They could have a negative impact on your system. 22 | 23 | This repository was created for: 24 | 25 | - Anybody willing to test. 26 | - Anybody interested in trying out upcoming add-ons or add-on features. 27 | 28 | If you are more interested in stable releases of our add-ons: 29 | 30 | 31 | 32 | [buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg 33 | [buymeacoffee]: https://www.buymeacoffee.com/sinclairpaul 34 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 35 | [discord]: https://discord.me/hassioaddons 36 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 37 | [forum]: https://community.home-assistant.io/?u=frenck 38 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 39 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg 40 | [release-shield]: https://img.shields.io/badge/version-v5.1.0-blue.svg 41 | [release]: https://github.com/hassio-addons/addon-chrony/tree/v5.1.0 -------------------------------------------------------------------------------- /chrony/config.yaml: -------------------------------------------------------------------------------- 1 | name: chrony 2 | version: 5.1.0 3 | slug: chrony 4 | description: A local NTP (Network Time Protocol) server for cameras etc. 5 | url: https://github.com/hassio-addons/addon-chrony 6 | codenotary: codenotary@frenck.dev 7 | startup: system 8 | arch: 9 | - aarch64 10 | - amd64 11 | - armv7 12 | hassio_api: true 13 | init: false 14 | privileged: 15 | - SYS_TIME 16 | ports: 17 | 123/udp: 123 18 | ports_description: 19 | 123/udp: NTP; Network Time Protocol 20 | options: 21 | set_system_clock: true 22 | mode: pool 23 | ntp_pool: pool.ntp.org 24 | ntp_server: 25 | - 54.39.13.155 26 | - briareus.schulte.org 27 | schema: 28 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 29 | set_system_clock: bool 30 | ntp_pool: str? 31 | ntp_server: 32 | - str? 33 | mode: list(pool|server) 34 | image: ghcr.io/hassio-addons/chrony/{arch} 35 | -------------------------------------------------------------------------------- /chrony/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/chrony/icon.png -------------------------------------------------------------------------------- /chrony/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/chrony/logo.png -------------------------------------------------------------------------------- /emqx/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update emqx/emqx to v5.8.6 @[renovate[bot]](https://github.com/apps/renovate) ([#137](https://github.com/hassio-addons/addon-emqx/pull/137)) 6 | - ⬆️ Update ghcr.io/hassio-addons/debian-base Docker tag to v7.8.0 @[renovate[bot]](https://github.com/apps/renovate) ([#136](https://github.com/hassio-addons/addon-emqx/pull/136)) 7 | -------------------------------------------------------------------------------- /emqx/config.yaml: -------------------------------------------------------------------------------- 1 | name: EMQX 2 | version: 0.7.5 3 | slug: emqx 4 | description: The most scalable open-source MQTT broker for IoT. An alternative for 5 | the Mosquitto add-on 6 | url: https://github.com/hassio-addons/addon-emqx 7 | codenotary: codenotary@frenck.dev 8 | startup: services 9 | ingress: true 10 | ingress_port: 18083 11 | ingress_stream: true 12 | init: false 13 | panel_icon: mdi:pipe 14 | panel_title: EMQX 15 | arch: 16 | - aarch64 17 | - amd64 18 | map: 19 | - ssl 20 | - addon_config:rw 21 | options: 22 | env_vars: [] 23 | host_network: true 24 | schema: 25 | env_vars: 26 | - name: match(^EMQX_([A-Z0-9_])+$) 27 | value: str 28 | image: ghcr.io/hassio-addons/emqx/{arch} 29 | -------------------------------------------------------------------------------- /emqx/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/emqx/icon.png -------------------------------------------------------------------------------- /emqx/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/emqx/logo.png -------------------------------------------------------------------------------- /example/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🧰 Maintenance 4 | 5 | - 🎆 Updates maintenance/license year to 2025 @frenck ([#193](https://github.com/hassio-addons/addon-example/pull/193)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.0.2 @[renovate[bot]](https://github.com/apps/renovate) ([#187](https://github.com/hassio-addons/addon-example/pull/187)) 10 | - ⬆️ Update alpine_3_21/coreutils to v9.5-r2 @[renovate[bot]](https://github.com/apps/renovate) ([#188](https://github.com/hassio-addons/addon-example/pull/188)) 11 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.0 @[renovate[bot]](https://github.com/apps/renovate) ([#189](https://github.com/hassio-addons/addon-example/pull/189)) 12 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.1 @[renovate[bot]](https://github.com/apps/renovate) ([#190](https://github.com/hassio-addons/addon-example/pull/190)) 13 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.2 @[renovate[bot]](https://github.com/apps/renovate) ([#191](https://github.com/hassio-addons/addon-example/pull/191)) 14 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.3 @[renovate[bot]](https://github.com/apps/renovate) ([#192](https://github.com/hassio-addons/addon-example/pull/192)) 15 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.4 @[renovate[bot]](https://github.com/apps/renovate) ([#194](https://github.com/hassio-addons/addon-example/pull/194)) 16 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.0 @[renovate[bot]](https://github.com/apps/renovate) ([#195](https://github.com/hassio-addons/addon-example/pull/195)) 17 | - ⬆️: migrate renovate config @[renovate[bot]](https://github.com/apps/renovate) ([#197](https://github.com/hassio-addons/addon-example/pull/197)) 18 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.1 @[renovate[bot]](https://github.com/apps/renovate) ([#196](https://github.com/hassio-addons/addon-example/pull/196)) 19 | -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Example 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] 8 | 9 | [![Support Frenck on Patreon][patreon-shield]][patreon] 10 | 11 | Example add-on by Community Home Assistant add-ons. 12 | 13 | ## About 14 | 15 | This is an example add-on for Home Assistant. When started, it displays a 16 | random quote every 5 seconds. 17 | 18 | It shows off several features and structures like: 19 | 20 | - Full blown GitHub repository. 21 | - General Dockerfile structure and setup. 22 | - The use of the `config.yaml` and `build.yaml` files. 23 | - General shell scripting structure (`run.sh`). 24 | - Quality assurance using CodeClimate. 25 | - Continuous integration and deployment using GitLab. 26 | - Usage of the Community Home Assistant Add-ons build environment. 27 | - Small use of the Bash function library in our base images. 28 | - The use of Docker label schema. 29 | 30 | ## WARNING! THIS IS A BETA VERSION! 31 | 32 | This Home Assistant Add-ons repository contains beta releases of add-ons. 33 | 34 | - They might stop working at any time. 35 | - They could have a negative impact on your system. 36 | 37 | This repository was created for: 38 | 39 | - Anybody willing to test. 40 | - Anybody interested in trying out upcoming add-ons or add-on features. 41 | 42 | If you are more interested in stable releases of our add-ons: 43 | 44 | 45 | 46 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 47 | [discord]: https://discord.me/hassioaddons 48 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 49 | [forum]: https://community.home-assistant.io?u=frenck 50 | [github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png 51 | [github-sponsors]: https://github.com/sponsors/frenck 52 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 53 | [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png 54 | [patreon]: https://www.patreon.com/frenck 55 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg 56 | [release-shield]: https://img.shields.io/badge/version-v10.1.0-blue.svg 57 | [release]: https://github.com/hassio-addons/addon-example/tree/v10.1.0 -------------------------------------------------------------------------------- /example/config.yaml: -------------------------------------------------------------------------------- 1 | name: Example 2 | version: 10.1.0 3 | slug: example 4 | description: Example add-on by Community Home Assistant Add-ons 5 | url: https://github.com/hassio-addons/addon-example 6 | codenotary: codenotary@frenck.dev 7 | init: false 8 | arch: 9 | - aarch64 10 | - amd64 11 | - armv7 12 | options: 13 | log_level: info 14 | seconds_between_quotes: 5 15 | schema: 16 | log_level: list(trace|debug|info|notice|warning|error|fatal) 17 | seconds_between_quotes: int(1,120) 18 | image: ghcr.io/hassio-addons/example/{arch} 19 | -------------------------------------------------------------------------------- /example/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/example/icon.png -------------------------------------------------------------------------------- /example/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/example/logo.png -------------------------------------------------------------------------------- /example/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: The amount of logging the add-on should do. 6 | seconds_between_quotes: 7 | name: Seconds between quotes 8 | description: >- 9 | The number of seconds the add-on waits until showing a new quote in the 10 | add-on log. 11 | -------------------------------------------------------------------------------- /foldingathome/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🧰 Maintenance 4 | 5 | - 🎆 Updates maintenance/license year to 2024 @frenck ([#67](https://github.com/hassio-addons/addon-foldingathome/pull/67)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update ghcr.io/hassio-addons/debian-base Docker tag to v7.3.0 @renovate ([#65](https://github.com/hassio-addons/addon-foldingathome/pull/65)) 10 | - ⬆️ Update ghcr.io/hassio-addons/debian-base Docker tag to v7.3.1 @renovate ([#66](https://github.com/hassio-addons/addon-foldingathome/pull/66)) 11 | -------------------------------------------------------------------------------- /foldingathome/config.yaml: -------------------------------------------------------------------------------- 1 | name: Folding@home 2 | version: 0.7.2 3 | slug: foldingathome 4 | description: Fighting disease with a world wide distributed super computer 5 | url: https://github.com/hassio-addons/addon-foldingathome 6 | codenotary: codenotary@frenck.dev 7 | webui: http://[HOST]:[PORT:7396] 8 | arch: 9 | - amd64 10 | init: false 11 | hassio_api: true 12 | video: true 13 | ports: 14 | 7396/tcp: 7396 15 | 36330/tcp: null 16 | ports_description: 17 | 7396/tcp: Web interface 18 | 36330/tcp: Remote command interface 19 | image: ghcr.io/hassio-addons/foldingathome/{arch} 20 | -------------------------------------------------------------------------------- /foldingathome/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/foldingathome/icon.png -------------------------------------------------------------------------------- /foldingathome/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/foldingathome/logo.png -------------------------------------------------------------------------------- /ftp/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🐛 Bug fixes 4 | 5 | - Install pam_pwdfile to /usr/lib/security instead of /lib/security @lotharbach ([#233](https://github.com/hassio-addons/addon-ftp/pull/233)) 6 | -------------------------------------------------------------------------------- /ftp/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: FTP 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] 8 | 9 | [![Support Frenck on Patreon][patreon-shield]][patreon] 10 | 11 | A secure and fast FTP server for Home Assistant 12 | 13 | ## About 14 | 15 | The FTP protocol might be come in handy sometimes. While old, 16 | it still has its use. For example, most IP Cameras still support the upload 17 | of images or videos via FTP. 18 | 19 | This add-on provides an FTP Server for Hass.io in a reasonably secure manner. 20 | While FTP is not entirely secure by its (unencrypted) nature, this add-on 21 | supports FTP over SSL (FTPS) and jails (chroot) the virtual users in their 22 | home directories. 23 | 24 | Of course, if you'd really want to, you could also use this add-on to again 25 | access to your Home Assistant configuration via FTP. 26 | 27 | ## WARNING! THIS IS A BETA VERSION! 28 | 29 | This Home Assistant Add-ons repository contains beta releases of add-ons. 30 | 31 | - They might stop working at any time. 32 | - They could have a negative impact on your system. 33 | 34 | This repository was created for: 35 | 36 | - Anybody willing to test. 37 | - Anybody interested in trying out upcoming add-ons or add-on features. 38 | 39 | If you are more interested in stable releases of our add-ons: 40 | 41 | 42 | 43 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 44 | [discord]: https://discord.me/hassioaddons 45 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 46 | [forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-ftp/36799?u=frenck 47 | [github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png 48 | [github-sponsors]: https://github.com/sponsors/frenck 49 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 50 | [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png 51 | [patreon]: https://www.patreon.com/frenck 52 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg 53 | [release-shield]: https://img.shields.io/badge/version-v5.2.1-blue.svg 54 | [release]: https://github.com/hassio-addons/addon-ftp/tree/v5.2.1 -------------------------------------------------------------------------------- /ftp/config.yaml: -------------------------------------------------------------------------------- 1 | name: FTP 2 | version: 5.2.1 3 | slug: ftp 4 | description: A secure and fast FTP server for Home Assistant 5 | url: https://github.com/hassio-addons/addon-ftp 6 | codenotary: codenotary@frenck.dev 7 | startup: services 8 | arch: 9 | - aarch64 10 | - amd64 11 | - armv7 12 | init: false 13 | host_network: true 14 | privileged: 15 | - SYS_ADMIN 16 | apparmor: false 17 | map: 18 | - addons:rw 19 | - backup:rw 20 | - config:rw 21 | - media:rw 22 | - share:rw 23 | - ssl:rw 24 | options: 25 | port: 21 26 | data_port: 20 27 | banner: Welcome to the Hass.io FTP service. 28 | pasv: true 29 | pasv_min_port: 30000 30 | pasv_max_port: 30010 31 | pasv_address: '' 32 | ssl: false 33 | certfile: fullchain.pem 34 | keyfile: privkey.pem 35 | implicit_ssl: false 36 | max_clients: 5 37 | users: 38 | - username: hassio 39 | password: changeme 40 | allow_chmod: false 41 | allow_download: false 42 | allow_upload: false 43 | allow_dirlist: true 44 | addons: false 45 | backup: false 46 | config: false 47 | media: true 48 | share: true 49 | ssl: false 50 | schema: 51 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 52 | port: port 53 | data_port: port 54 | banner: str 55 | pasv: bool 56 | pasv_min_port: port 57 | pasv_max_port: port 58 | pasv_address: str 59 | pasv_addr_resolve: bool? 60 | ssl: bool 61 | certfile: str 62 | keyfile: str 63 | implicit_ssl: bool 64 | max_clients: int 65 | users: 66 | - username: match(^[a-zA-Z0-9\d](?:[a-zA-Z0-9\d]|-(?=[a-zA-Z0-9\d])){0,32}$) 67 | password: password 68 | allow_chmod: bool 69 | allow_download: bool 70 | allow_upload: bool 71 | allow_dirlist: bool 72 | addons: bool 73 | backup: bool 74 | config: bool 75 | media: bool 76 | share: bool 77 | ssl: bool 78 | i_like_to_be_pwned: bool? 79 | image: ghcr.io/hassio-addons/ftp/{arch} 80 | -------------------------------------------------------------------------------- /ftp/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/ftp/icon.png -------------------------------------------------------------------------------- /ftp/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/ftp/logo.png -------------------------------------------------------------------------------- /glances/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v15.0.4 @renovate ([#451](https://github.com/hassio-addons/addon-glances/pull/451)) 6 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v15.0.5 @renovate ([#452](https://github.com/hassio-addons/addon-glances/pull/452)) 7 | - ⬆️ Update psutil to v5.9.8 @renovate ([#453](https://github.com/hassio-addons/addon-glances/pull/453)) 8 | - ⬆️ Update influxdb-client to v1.40.0 @renovate ([#454](https://github.com/hassio-addons/addon-glances/pull/454)) 9 | - ⬆️ Update alpine_3_19/nginx to v1.24.0-r15 @renovate ([#455](https://github.com/hassio-addons/addon-glances/pull/455)) 10 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v15.0.6 @renovate ([#456](https://github.com/hassio-addons/addon-glances/pull/456)) 11 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v15.0.7 @renovate ([#458](https://github.com/hassio-addons/addon-glances/pull/458)) 12 | - ⬆️ Update Python to v3.11.8-r0 @renovate ([#461](https://github.com/hassio-addons/addon-glances/pull/461)) 13 | - ⬆️ Update influxdb-client to v1.41.0 @renovate ([#462](https://github.com/hassio-addons/addon-glances/pull/462)) 14 | - ⬆️ Update glances to v3.4.0.5 @renovate ([#464](https://github.com/hassio-addons/addon-glances/pull/464)) 15 | -------------------------------------------------------------------------------- /glances/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Glances 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] 8 | 9 | [![Support Frenck on Patreon][patreon-shield]][patreon] 10 | 11 | Glances is a cross-platform system monitoring tool written in Python. 12 | 13 | ## About 14 | 15 | Glances is a cross-platform monitoring tool which aims to present a maximum of 16 | information in a minimum of space through a Web-based interface. 17 | 18 | Glances can export all system statistics to InfluxDB, allowing you to look 19 | at all your system information and its behavior over time. 20 | 21 | ![Glances screenshot][screenshot] 22 | 23 | ## WARNING! THIS IS A BETA VERSION! 24 | 25 | This Home Assistant Add-ons repository contains beta releases of add-ons. 26 | 27 | - They might stop working at any time. 28 | - They could have a negative impact on your system. 29 | 30 | This repository was created for: 31 | 32 | - Anybody willing to test. 33 | - Anybody interested in trying out upcoming add-ons or add-on features. 34 | 35 | If you are more interested in stable releases of our add-ons: 36 | 37 | 38 | 39 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 40 | [discord]: https://discord.me/hassioaddons 41 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 42 | [forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-glances/97102?u=frenck 43 | [github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png 44 | [github-sponsors]: https://github.com/sponsors/frenck 45 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2024.svg 46 | [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png 47 | [patreon]: https://www.patreon.com/frenck 48 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 49 | [release-shield]: https://img.shields.io/badge/version-v0.21.1-blue.svg 50 | [release]: https://github.com/hassio-addons/addon-glances/tree/v0.21.1 51 | [screenshot]: https://github.com/hassio-addons/addon-glances/raw/main/images/screenshot.png -------------------------------------------------------------------------------- /glances/config.yaml: -------------------------------------------------------------------------------- 1 | name: Glances 2 | version: 0.21.1 3 | slug: glances 4 | description: A cross-platform system monitoring tool 5 | url: https://github.com/hassio-addons/addon-glances 6 | codenotary: codenotary@frenck.dev 7 | ingress: true 8 | ingress_port: 0 9 | ingress_stream: true 10 | panel_icon: mdi:speedometer 11 | startup: services 12 | homeassistant: 0.92.0b2 13 | arch: 14 | - aarch64 15 | - amd64 16 | - armv7 17 | ports: 18 | 80/tcp: null 19 | ports_description: 20 | 80/tcp: Web interface (Not required for Ingress) 21 | map: 22 | - addons 23 | - backup 24 | - config:rw 25 | - share 26 | - ssl 27 | - media 28 | hassio_api: true 29 | auth_api: true 30 | docker_api: true 31 | host_network: true 32 | host_pid: true 33 | apparmor: false 34 | options: 35 | log_level: info 36 | process_info: false 37 | refresh_time: 10 38 | ssl: false 39 | certfile: fullchain.pem 40 | keyfile: privkey.pem 41 | influxdb: 42 | enabled: false 43 | host: a0d7b954-influxdb 44 | port: 8086 45 | interval: 60 46 | ssl: false 47 | version: 1 48 | username: glances 49 | password: '' 50 | database: glances 51 | prefix: localhost 52 | schema: 53 | log_level: list(trace|debug|info|notice|warning|error|fatal) 54 | process_info: bool 55 | refresh_time: int 56 | ssl: bool 57 | certfile: str 58 | keyfile: str 59 | influxdb: 60 | bucket: str? 61 | enabled: bool 62 | host: str 63 | port: port 64 | username: str? 65 | password: password? 66 | database: str? 67 | org: str? 68 | prefix: str? 69 | interval: int 70 | ssl: bool? 71 | token: str? 72 | version: int 73 | leave_front_door_open: bool? 74 | environment: 75 | LOG_FORMAT: '{LEVEL}: {MESSAGE}' 76 | image: ghcr.io/hassio-addons/glances/{arch} 77 | -------------------------------------------------------------------------------- /glances/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/glances/icon.png -------------------------------------------------------------------------------- /glances/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/glances/logo.png -------------------------------------------------------------------------------- /grafana/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🚀 Enhancements 4 | 5 | - 🔨 Remove auth header for direct access @sinclairpaul ([#462](https://github.com/hassio-addons/addon-grafana/pull/462)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update Add-on base image to v7.8.2 @[renovate[bot]](https://github.com/apps/renovate) ([#461](https://github.com/hassio-addons/addon-grafana/pull/461)) 10 | - ⬆️ Update grafana/grafana-image-renderer to v3.12.5 @[renovate[bot]](https://github.com/apps/renovate) ([#463](https://github.com/hassio-addons/addon-grafana/pull/463)) 11 | - ⬆️ Update grafana/grafana to v11.6.1 @[renovate[bot]](https://github.com/apps/renovate) ([#464](https://github.com/hassio-addons/addon-grafana/pull/464)) 12 | - ⬆️ Update grafana/grafana to v12 @[renovate[bot]](https://github.com/apps/renovate) ([#465](https://github.com/hassio-addons/addon-grafana/pull/465)) 13 | - ⬆️ Update Add-on base image to v7.8.3 @[renovate[bot]](https://github.com/apps/renovate) ([#466](https://github.com/hassio-addons/addon-grafana/pull/466)) 14 | -------------------------------------------------------------------------------- /grafana/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Grafana 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] 8 | 9 | [![Support Frenck on Patreon][patreon-shield]][patreon] 10 | 11 | The open platform for beautiful analytics and monitoring. 12 | 13 | ## About 14 | 15 | The analytics platform for all your metrics. 16 | 17 | Grafana allows you to query, visualize, alert on and understand your metrics 18 | no matter where they are stored. Create, explore, and share dashboards. Learn 19 | about your Home Automation system using sexy and compelling graphs, and other 20 | data visualizations. 21 | 22 | Combine this add-on with the InfluxDB add-on to get insanely powerful 23 | insights to your home. 24 | 25 | ![Grafana in the Home Assistant Frontend][screenshot] 26 | 27 | ## WARNING! THIS IS A BETA VERSION! 28 | 29 | This Home Assistant Add-ons repository contains beta releases of add-ons. 30 | 31 | - They might stop working at any time. 32 | - They could have a negative impact on your system. 33 | 34 | This repository was created for: 35 | 36 | - Anybody willing to test. 37 | - Anybody interested in trying out upcoming add-ons or add-on features. 38 | 39 | If you are more interested in stable releases of our add-ons: 40 | 41 | 42 | 43 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 44 | [discord]: https://discord.me/hassioaddons 45 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 46 | [forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-grafana/54674?u=frenck 47 | [github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png 48 | [github-sponsors]: https://github.com/sponsors/frenck 49 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 50 | [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png 51 | [patreon]: https://www.patreon.com/frenck 52 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg 53 | [release-shield]: https://img.shields.io/badge/version-v11.0.0-blue.svg 54 | [release]: https://github.com/hassio-addons/addon-grafana/tree/v11.0.0 55 | [screenshot]: https://github.com/hassio-addons/addon-grafana/raw/main/images/screenshot.png -------------------------------------------------------------------------------- /grafana/config.yaml: -------------------------------------------------------------------------------- 1 | name: Grafana 2 | version: 11.0.0 3 | slug: grafana 4 | description: The open platform for beautiful analytics and monitoring 5 | url: https://github.com/hassio-addons/addon-grafana 6 | codenotary: codenotary@frenck.dev 7 | startup: services 8 | ingress: true 9 | ingress_port: 1337 10 | ingress_stream: true 11 | init: false 12 | panel_icon: mdi:chart-timeline 13 | panel_title: Grafana 14 | arch: 15 | - aarch64 16 | - amd64 17 | - armv7 18 | map: 19 | - homeassistant_config 20 | - share 21 | - ssl 22 | options: 23 | plugins: [] 24 | custom_plugins: [] 25 | env_vars: [] 26 | ssl: true 27 | certfile: fullchain.pem 28 | keyfile: privkey.pem 29 | ports: 30 | 80/tcp: null 31 | ports_description: 32 | 80/tcp: Not required for Ingress 33 | schema: 34 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 35 | plugins: 36 | - str 37 | custom_plugins: 38 | - name: str 39 | url: str 40 | unsigned: bool? 41 | certfile: str 42 | keyfile: str 43 | ssl: bool 44 | grafana_ingress_user: str? 45 | env_vars: 46 | - name: match(^GF_([A-Z0-9_])+$) 47 | value: str 48 | image: ghcr.io/hassio-addons/grafana/{arch} 49 | -------------------------------------------------------------------------------- /grafana/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/grafana/icon.png -------------------------------------------------------------------------------- /grafana/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/grafana/logo.png -------------------------------------------------------------------------------- /grocy/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🧰 Maintenance 4 | 5 | - 🎆 Updates maintenance/license year to 2025 @frenck ([#474](https://github.com/hassio-addons/addon-grocy/pull/474)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update alpine_3_19/git to v2.43.6-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#468](https://github.com/hassio-addons/addon-grocy/pull/468)) 10 | - ⬆️ Update grocy/grocy to v4.4.0 @[renovate[bot]](https://github.com/apps/renovate) ([#471](https://github.com/hassio-addons/addon-grocy/pull/471)) 11 | - ⬆️ Update grocy/grocy to v4.4.1 @[renovate[bot]](https://github.com/apps/renovate) ([#472](https://github.com/hassio-addons/addon-grocy/pull/472)) 12 | -------------------------------------------------------------------------------- /grocy/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Grocy 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] 8 | 9 | [![Support Frenck on Patreon][patreon-shield]][patreon] 10 | 11 | ERP beyond your fridge! A groceries & household management solution for your home. 12 | 13 | ## About 14 | 15 | [Grocy][grocy] - ERP beyond your fridge is a powerful groceries & household 16 | management solution for your home, delivering features like: 17 | 18 | - Stock management 19 | - Shopping list 20 | - Recipes 21 | - Chores & tasks 22 | - Inventory 23 | - and many more. 24 | 25 | [Try out the online demo of Grocy][grocy-demo]. 26 | 27 | ![Grocy screenshot][screenshot] 28 | 29 | ## WARNING! THIS IS A BETA VERSION! 30 | 31 | This Home Assistant Add-ons repository contains beta releases of add-ons. 32 | 33 | - They might stop working at any time. 34 | - They could have a negative impact on your system. 35 | 36 | This repository was created for: 37 | 38 | - Anybody willing to test. 39 | - Anybody interested in trying out upcoming add-ons or add-on features. 40 | 41 | If you are more interested in stable releases of our add-ons: 42 | 43 | 44 | 45 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 46 | [discord]: https://discord.me/hassioaddons 47 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 48 | [forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-grocy/112422?u=frenck 49 | [github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png 50 | [github-sponsors]: https://github.com/sponsors/frenck 51 | [grocy-demo]: https://demo-en.grocy.info 52 | [grocy]: https://grocy.info/ 53 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 54 | [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png 55 | [patreon]: https://www.patreon.com/frenck 56 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 57 | [release-shield]: https://img.shields.io/badge/version-v0.24.0-blue.svg 58 | [release]: https://github.com/hassio-addons/addon-grocy/tree/v0.24.0 59 | [screenshot]: https://github.com/hassio-addons/addon-grocy/raw/main/images/screenshot.gif -------------------------------------------------------------------------------- /grocy/config.yaml: -------------------------------------------------------------------------------- 1 | name: Grocy 2 | version: 0.24.0 3 | slug: grocy 4 | description: ERP beyond your fridge! A groceries & household management solution for 5 | your home 6 | url: https://github.com/hassio-addons/addon-grocy 7 | codenotary: codenotary@frenck.dev 8 | ingress: true 9 | ingress_stream: true 10 | init: false 11 | panel_icon: mdi:cart 12 | panel_admin: false 13 | arch: 14 | - aarch64 15 | - amd64 16 | - armv7 17 | map: 18 | - ssl 19 | ports: 20 | 80/tcp: null 21 | ports_description: 22 | 80/tcp: Web interface (Not required for Ingress) 23 | options: 24 | culture: en 25 | currency: USD 26 | entry_page: stock 27 | features: 28 | batteries: true 29 | calendar: true 30 | chores: true 31 | equipment: true 32 | recipes: true 33 | shoppinglist: true 34 | stock: true 35 | tasks: true 36 | tweaks: 37 | chores_assignment: true 38 | multiple_shopping_lists: true 39 | stock_best_before_date_tracking: true 40 | stock_location_tracking: true 41 | stock_price_tracking: true 42 | stock_product_freezing: true 43 | stock_product_opened_tracking: true 44 | stock_count_opened_products_against_minimum_stock_amount: true 45 | ssl: true 46 | certfile: fullchain.pem 47 | keyfile: privkey.pem 48 | grocy_ingress_user: '' 49 | schema: 50 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 51 | culture: list(ca|cs|da|de|el_GR|en|en_GB|es|et|fi|fr|he_IL|hu|it|ja|ko_KR|lt|nl|no|pl|pt_BR|pt_PT|ro|ru|sk_SK|sl|sv_SE|ta|tr|uk|zh_CN|zh_TW) 52 | currency: match(^[A-Z]{3}$) 53 | entry_page: list(stock|shoppinglist|recipes|chores|tasks|batteries|equipment|calendar|mealplan) 54 | features: 55 | batteries: bool 56 | calendar: bool 57 | chores: bool 58 | equipment: bool 59 | recipes: bool 60 | shoppinglist: bool 61 | stock: bool 62 | tasks: bool 63 | tweaks: 64 | calendar_first_day_of_week: int(0,6)? 65 | chores_assignment: bool 66 | meal_plan_first_day_of_week: int(0,6)? 67 | multiple_shopping_lists: bool 68 | stock_best_before_date_tracking: bool 69 | stock_location_tracking: bool 70 | stock_price_tracking: bool 71 | stock_product_freezing: bool 72 | stock_product_opened_tracking: bool 73 | stock_count_opened_products_against_minimum_stock_amount: bool 74 | ssl: bool 75 | certfile: str 76 | keyfile: str 77 | grocy_ingress_user: str 78 | image: ghcr.io/hassio-addons/grocy/{arch} 79 | -------------------------------------------------------------------------------- /grocy/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/grocy/icon.png -------------------------------------------------------------------------------- /grocy/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/grocy/logo.png -------------------------------------------------------------------------------- /influxdb/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🧰 Maintenance 4 | 5 | - 🎆 Updates maintenance/license year to 2025 @frenck ([#371](https://github.com/hassio-addons/addon-influxdb/pull/371)) 6 | 7 | ## 📚 Documentation 8 | 9 | - README.md grammar fixes @GeoMaciolek ([#367](https://github.com/hassio-addons/addon-influxdb/pull/367)) 10 | 11 | ## ⬆️ Dependency updates 12 | 13 | - ⬆️ Update Add-on base image to v7.5.1 @[renovate[bot]](https://github.com/apps/renovate) ([#352](https://github.com/hassio-addons/addon-influxdb/pull/352)) 14 | - ⬆️ Update Add-on base image to v7.5.2 @[renovate[bot]](https://github.com/apps/renovate) ([#359](https://github.com/hassio-addons/addon-influxdb/pull/359)) 15 | - ⬆️ Update Add-on base image to v7.6.0 @[renovate[bot]](https://github.com/apps/renovate) ([#360](https://github.com/hassio-addons/addon-influxdb/pull/360)) 16 | - ⬆️ Update Add-on base image to v7.6.2 @[renovate[bot]](https://github.com/apps/renovate) ([#361](https://github.com/hassio-addons/addon-influxdb/pull/361)) 17 | - ⬆️ Update Add-on base image to v7.6.3 @[renovate[bot]](https://github.com/apps/renovate) ([#365](https://github.com/hassio-addons/addon-influxdb/pull/365)) 18 | - ⬆️ Update Add-on base image to v7.7.0 @[renovate[bot]](https://github.com/apps/renovate) ([#366](https://github.com/hassio-addons/addon-influxdb/pull/366)) 19 | - ⬆️: migrate renovate config @[renovate[bot]](https://github.com/apps/renovate) ([#370](https://github.com/hassio-addons/addon-influxdb/pull/370)) 20 | - ⬆️ Update Add-on base image to v7.7.1 @[renovate[bot]](https://github.com/apps/renovate) ([#369](https://github.com/hassio-addons/addon-influxdb/pull/369)) 21 | -------------------------------------------------------------------------------- /influxdb/config.yaml: -------------------------------------------------------------------------------- 1 | name: InfluxDB 2 | version: 5.0.2 3 | slug: influxdb 4 | description: Scalable datastore for metrics, events, and real-time analytics 5 | url: https://github.com/hassio-addons/addon-influxdb 6 | codenotary: codenotary@frenck.dev 7 | ingress: true 8 | ingress_port: 1337 9 | ingress_stream: true 10 | panel_icon: mdi:chart-areaspline 11 | startup: services 12 | homeassistant: 0.92.0b2 13 | hassio_api: true 14 | arch: 15 | - aarch64 16 | - amd64 17 | - armv7 18 | init: false 19 | map: 20 | - share:rw 21 | - ssl 22 | ports: 23 | 80/tcp: null 24 | 8086/tcp: 8086 25 | 8088/tcp: 8088 26 | ports_description: 27 | 80/tcp: Web interface (Not required for Ingress) 28 | 8086/tcp: InfluxDB server 29 | 8088/tcp: RPC service for backup and restore 30 | auth_api: true 31 | options: 32 | auth: true 33 | reporting: true 34 | ssl: true 35 | certfile: fullchain.pem 36 | keyfile: privkey.pem 37 | envvars: [] 38 | schema: 39 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 40 | auth: bool 41 | reporting: bool 42 | ssl: bool 43 | certfile: str 44 | keyfile: str 45 | envvars: 46 | - name: match(^INFLUXDB_([A-Z0-9_])+$) 47 | value: str 48 | leave_front_door_open: bool? 49 | image: ghcr.io/hassio-addons/influxdb/{arch} 50 | -------------------------------------------------------------------------------- /influxdb/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/influxdb/icon.png -------------------------------------------------------------------------------- /influxdb/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/influxdb/logo.png -------------------------------------------------------------------------------- /jupyterlab/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update jupyterlab to v4.4.3 @[renovate[bot]](https://github.com/apps/renovate) ([#702](https://github.com/hassio-addons/addon-jupyterlab/pull/702)) 6 | -------------------------------------------------------------------------------- /jupyterlab/config.yaml: -------------------------------------------------------------------------------- 1 | name: JupyterLab 2 | version: 0.15.12 3 | slug: jupyterlablite 4 | description: Create documents containing live code, equations, visualizations, and 5 | explanatory text 6 | url: https://github.com/hassio-addons/addon-jupyterlab 7 | codenotary: codenotary@frenck.dev 8 | ingress: true 9 | panel_icon: mdi:flask-outline 10 | arch: 11 | - aarch64 12 | - amd64 13 | homeassistant_api: true 14 | init: false 15 | map: 16 | - config:rw 17 | - share:rw 18 | options: 19 | github_access_token: '' 20 | system_packages: [] 21 | init_commands: [] 22 | schema: 23 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 24 | github_access_token: password 25 | system_packages: 26 | - str 27 | init_commands: 28 | - str 29 | image: ghcr.io/hassio-addons/jupyterlab/{arch} 30 | -------------------------------------------------------------------------------- /jupyterlab/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/jupyterlab/icon.png -------------------------------------------------------------------------------- /jupyterlab/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/jupyterlab/logo.png -------------------------------------------------------------------------------- /lidarr/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.3 @[renovate[bot]](https://github.com/apps/renovate) ([#48](https://github.com/hassio-addons/addon-lidarr/pull/48)) 6 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.4 @[renovate[bot]](https://github.com/apps/renovate) ([#49](https://github.com/hassio-addons/addon-lidarr/pull/49)) 7 | - ⬆️ Update alpine_3_21/sqlite-libs to v3.48.0-r1 @[renovate[bot]](https://github.com/apps/renovate) ([#50](https://github.com/hassio-addons/addon-lidarr/pull/50)) 8 | - ⬆️ Update Lidarr/Lidarr to v2.11.2.4629 @[renovate[bot]](https://github.com/apps/renovate) ([#51](https://github.com/hassio-addons/addon-lidarr/pull/51)) 9 | - ⬆️ Update alpine_3_21/sqlite-libs to v3.48.0-r2 @[renovate[bot]](https://github.com/apps/renovate) ([#52](https://github.com/hassio-addons/addon-lidarr/pull/52)) 10 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.5 @[renovate[bot]](https://github.com/apps/renovate) ([#53](https://github.com/hassio-addons/addon-lidarr/pull/53)) 11 | -------------------------------------------------------------------------------- /lidarr/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Lidarr 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | Looks and smells like Sonarr but made for music. 8 | 9 | ## About 10 | 11 | [Lidarr] is a music collection manager for Usenet and BitTorrent users. It can 12 | monitor multiple RSS feeds for new tracks from your favorite artists and will 13 | grab, sort and rename them. It can also be configured to automatically upgrade 14 | the quality of files already downloaded when a better quality format becomes 15 | available. 16 | 17 | [Lidarr]: https://lidarr.audio/ 18 | 19 | ## WARNING! THIS IS A BETA VERSION! 20 | 21 | This Home Assistant Add-ons repository contains beta releases of add-ons. 22 | 23 | - They might stop working at any time. 24 | - They could have a negative impact on your system. 25 | 26 | This repository was created for: 27 | 28 | - Anybody willing to test. 29 | - Anybody interested in trying out upcoming add-ons or add-on features. 30 | 31 | If you are more interested in stable releases of our add-ons: 32 | 33 | 34 | 35 | [discord-shield]: https://img.shields.io/discord/330944238910963714.svg 36 | [discord]: https://discord.gg/c5DvZ4e 37 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 38 | [forum]: https://community.home-assistant.io/t/?u=frenck 39 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 40 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 41 | [release-shield]: https://img.shields.io/badge/version-v0.10.0-blue.svg 42 | [release]: https://github.com/hassio-addons/addon-lidarr/tree/v0.10.0 -------------------------------------------------------------------------------- /lidarr/config.yaml: -------------------------------------------------------------------------------- 1 | name: Lidarr 2 | version: 0.10.0 3 | slug: lidarr 4 | description: Looks and smells like Sonarr but made for music 5 | url: https://github.com/hassio-addons/addon-lidarr/tree/main/README.md 6 | codenotary: codenotary@frenck.dev 7 | webui: http://[HOST]:[PORT:8686] 8 | init: false 9 | arch: 10 | - aarch64 11 | - amd64 12 | - armv7 13 | map: 14 | - addon_config:rw 15 | - share:rw 16 | - media:rw 17 | ports: 18 | 8686/tcp: 8686 19 | image: ghcr.io/hassio-addons/lidarr/{arch} 20 | -------------------------------------------------------------------------------- /lidarr/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/lidarr/icon.png -------------------------------------------------------------------------------- /lidarr/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/lidarr/logo.png -------------------------------------------------------------------------------- /log-viewer/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update ghcr.io/hassio-addons/base-nodejs Docker tag to v0.1.1 @renovate ([#197](https://github.com/hassio-addons/addon-log-viewer/pull/197)) 6 | - ⬆️ Update ghcr.io/hassio-addons/base-nodejs Docker tag to v0.1.2 @renovate ([#198](https://github.com/hassio-addons/addon-log-viewer/pull/198)) 7 | - ⬆️ Update alpine_3_19/nginx to v1.24.0-r15 @renovate ([#200](https://github.com/hassio-addons/addon-log-viewer/pull/200)) 8 | - ⬆️ Update ghcr.io/hassio-addons/base-nodejs Docker tag to v0.1.3 @renovate ([#201](https://github.com/hassio-addons/addon-log-viewer/pull/201)) 9 | - ⬆️ Update ghcr.io/hassio-addons/base-nodejs Docker tag to v0.1.4 @renovate ([#202](https://github.com/hassio-addons/addon-log-viewer/pull/202)) 10 | - ⬆️ Update ghcr.io/hassio-addons/base-nodejs Docker tag to v0.2.0 @renovate ([#203](https://github.com/hassio-addons/addon-log-viewer/pull/203)) 11 | - ⬆️ Update alpine_3_19/nginx to v1.24.0-r16 @renovate ([#206](https://github.com/hassio-addons/addon-log-viewer/pull/206)) 12 | - ⬆️ Update alpine_3_19/git to v2.43.4-r0 @renovate ([#207](https://github.com/hassio-addons/addon-log-viewer/pull/207)) 13 | - ⬆️ Update ghcr.io/hassio-addons/base-nodejs Docker tag to v0.2.1 @renovate ([#205](https://github.com/hassio-addons/addon-log-viewer/pull/205)) 14 | - ⬆️ Update ghcr.io/hassio-addons/base-nodejs Docker tag to v0.2.2 @renovate ([#208](https://github.com/hassio-addons/addon-log-viewer/pull/208)) 15 | - ⬆️ Update ghcr.io/hassio-addons/base-nodejs Docker tag to v0.2.3 @renovate ([#209](https://github.com/hassio-addons/addon-log-viewer/pull/209)) 16 | - ⬆️ Update ghcr.io/hassio-addons/base-nodejs Docker tag to v0.2.4 @renovate ([#210](https://github.com/hassio-addons/addon-log-viewer/pull/210)) 17 | - ⬆️ Update alpine_3_19/git to v2.43.5-r0 @renovate ([#211](https://github.com/hassio-addons/addon-log-viewer/pull/211)) 18 | -------------------------------------------------------------------------------- /log-viewer/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Log Viewer 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Buy me a coffee][buymeacoffee-shield]][buymeacoffee] 8 | 9 | Browser-based log utility for Home Assistant. 10 | 11 | ## About 12 | 13 | Easily monitor your Home Assistant logs in your web browser. Custom filtering 14 | is available to make it simple to differentiate different types of logs. 15 | 16 | ## WARNING! THIS IS A BETA VERSION! 17 | 18 | This Home Assistant Add-ons repository contains beta releases of add-ons. 19 | 20 | - They might stop working at any time. 21 | - They could have a negative impact on your system. 22 | 23 | This repository was created for: 24 | 25 | - Anybody willing to test. 26 | - Anybody interested in trying out upcoming add-ons or add-on features. 27 | 28 | If you are more interested in stable releases of our add-ons: 29 | 30 | 31 | 32 | [buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg 33 | [buymeacoffee]: https://www.buymeacoffee.com/dale3h 34 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 35 | [discord]: https://discord.me/hassioaddons 36 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 37 | [forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-log-viewer/64377?u=dale3h 38 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2024.svg 39 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 40 | [release-shield]: https://img.shields.io/badge/version-v0.17.1-blue.svg 41 | [release]: https://github.com/hassio-addons/addon-log-viewer/tree/v0.17.1 -------------------------------------------------------------------------------- /log-viewer/config.yaml: -------------------------------------------------------------------------------- 1 | name: Log Viewer 2 | version: 0.17.1 3 | slug: logviewer 4 | description: Browser-based log utility for Home Assistant 5 | url: https://github.com/hassio-addons/addon-log-viewer 6 | codenotary: codenotary@frenck.dev 7 | init: false 8 | ingress: true 9 | ingress_stream: true 10 | panel_icon: mdi:text-box-outline 11 | homeassistant: 0.92.0b2 12 | arch: 13 | - aarch64 14 | - amd64 15 | - armv7 16 | homeassistant_api: true 17 | auth_api: true 18 | ports: 19 | 80/tcp: null 20 | ports_description: 21 | 80/tcp: Web interface (Not required for Ingress) 22 | map: 23 | - homeassistant_config 24 | - share 25 | - ssl 26 | options: 27 | ssl: true 28 | certfile: fullchain.pem 29 | keyfile: privkey.pem 30 | schema: 31 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 32 | ssl: bool 33 | certfile: str 34 | keyfile: str 35 | leave_front_door_open: bool? 36 | image: ghcr.io/hassio-addons/log-viewer/{arch} 37 | -------------------------------------------------------------------------------- /log-viewer/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/log-viewer/icon.png -------------------------------------------------------------------------------- /log-viewer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/log-viewer/logo.png -------------------------------------------------------------------------------- /log-viewer/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: >- 6 | Controls the level of log details the add-on provides. 7 | ssl: 8 | name: SSL 9 | description: >- 10 | Enables/Disables SSL (HTTPS) on the web interface. 11 | certfile: 12 | name: Certificate file 13 | description: >- 14 | The certificate file to use for SSL. Note that this file must 15 | exist in the /ssl/ folder. 16 | keyfile: 17 | name: Private key file 18 | description: >- 19 | The private key file to use for SSL. Note that this file must 20 | exist in the /ssl/ folder. 21 | network: 22 | 80/tcp: Web interface (Not required for Ingress) 23 | -------------------------------------------------------------------------------- /motioneye/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update motioneye-project/motioneye to v0.43.1b4 @[renovate[bot]](https://github.com/apps/renovate) ([#547](https://github.com/hassio-addons/addon-motioneye/pull/547)) 6 | -------------------------------------------------------------------------------- /motioneye/config.yaml: -------------------------------------------------------------------------------- 1 | name: motionEye 2 | version: 0.22.1 3 | slug: motioneye 4 | description: Simple, elegant and feature-rich CCTV/NVR for your cameras 5 | url: https://github.com/hassio-addons/addon-motioneye 6 | codenotary: codenotary@frenck.dev 7 | ingress: true 8 | ingress_port: 0 9 | ingress_stream: true 10 | panel_icon: mdi:cctv 11 | homeassistant: 0.92.0b2 12 | arch: 13 | - aarch64 14 | - amd64 15 | - armhf 16 | - armv7 17 | - i386 18 | init: false 19 | ports: 20 | 80/tcp: null 21 | ports_description: 22 | 80/tcp: Web interface (Not required for Ingress) 23 | discovery: 24 | - motioneye 25 | host_network: true 26 | apparmor: false 27 | video: true 28 | privileged: 29 | - DAC_READ_SEARCH 30 | - SYS_ADMIN 31 | map: 32 | - media:rw 33 | - share:rw 34 | - ssl 35 | options: 36 | motion_webcontrol: false 37 | ssl: true 38 | certfile: fullchain.pem 39 | keyfile: privkey.pem 40 | action_buttons: [] 41 | schema: 42 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 43 | motion_webcontrol: bool 44 | ssl: bool 45 | certfile: str 46 | keyfile: str 47 | action_buttons: 48 | - type: list(lock|unlock|light_on|light_off|alarm_on|alarm_off|up|right|down|left|zoom_in|zoom_out|preset1|preset2|preset3|preset4|preset5|preset6|preset7|preset8|preset9)? 49 | camera: int? 50 | command: str? 51 | image: ghcr.io/hassio-addons/motioneye/{arch} 52 | -------------------------------------------------------------------------------- /motioneye/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/motioneye/icon.png -------------------------------------------------------------------------------- /motioneye/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/motioneye/logo.png -------------------------------------------------------------------------------- /motioneye/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: >- 6 | Controls the level of log details the add-on provides. 7 | motion_webcontrol: 8 | name: Motion webcontrol 9 | description: >- 10 | Enables the motion webcontrol endpoint running on port 7999. 11 | ssl: 12 | name: SSL 13 | description: >- 14 | Enables/Disables SSL (HTTPS) on the web interface of motionEye. 15 | certfile: 16 | name: Certificate file 17 | description: >- 18 | The certificate file to use for SSL. Note that this file must 19 | exists in the /ssl/ folder. 20 | keyfile: 21 | name: Private key file 22 | description: >- 23 | The private key file to use for SSL. Note that this file must 24 | exists in the /ssl/ folder. 25 | action_buttons: 26 | name: Action buttons 27 | description: >- 28 | If configured, a script will be created to implement an motionEye 29 | action button. See add-on documentation for usage details. 30 | network: 31 | 80/tcp: Web interface (Not required for Ingress) 32 | -------------------------------------------------------------------------------- /mqtt-io/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🐛 Bug fixes 4 | 5 | - ⬇️ Downgrade paho-mqtt to <2 @mrk-its ([#121](https://github.com/hassio-addons/addon-mqtt-io/pull/121)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v15.0.4 @renovate ([#102](https://github.com/hassio-addons/addon-mqtt-io/pull/102)) 10 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v15.0.5 @renovate ([#105](https://github.com/hassio-addons/addon-mqtt-io/pull/105)) 11 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v15.0.6 @renovate ([#106](https://github.com/hassio-addons/addon-mqtt-io/pull/106)) 12 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v15.0.7 @renovate ([#107](https://github.com/hassio-addons/addon-mqtt-io/pull/107)) 13 | - ⬆️ Update gpiozero to v2.0.1 @renovate ([#108](https://github.com/hassio-addons/addon-mqtt-io/pull/108)) 14 | - ⬆️ Update Python to v3.11.8-r0 @renovate ([#109](https://github.com/hassio-addons/addon-mqtt-io/pull/109)) 15 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v15.0.8 @renovate ([#113](https://github.com/hassio-addons/addon-mqtt-io/pull/113)) 16 | - ⬆️ Update alpine_3_19/git to v2.43.4-r0 @renovate ([#117](https://github.com/hassio-addons/addon-mqtt-io/pull/117)) 17 | - ⬆️ Update Python to v3.11.9-r0 @renovate ([#114](https://github.com/hassio-addons/addon-mqtt-io/pull/114)) 18 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v15.0.9 @renovate ([#118](https://github.com/hassio-addons/addon-mqtt-io/pull/118)) 19 | -------------------------------------------------------------------------------- /mqtt-io/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: MQTT IO 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | Expose GPIO modules and digital sensors via MQTT for remote control and monitoring. 8 | 9 | ## About 10 | 11 | Exposes general purpose inputs and outputs (GPIO), hardware sensors and serial 12 | devices to an MQTT server. Ideal for single-board computers such as 13 | the Raspberry Pi. 14 | 15 | ## WARNING! THIS IS A BETA VERSION! 16 | 17 | This Home Assistant Add-ons repository contains beta releases of add-ons. 18 | 19 | - They might stop working at any time. 20 | - They could have a negative impact on your system. 21 | 22 | This repository was created for: 23 | 24 | - Anybody willing to test. 25 | - Anybody interested in trying out upcoming add-ons or add-on features. 26 | 27 | If you are more interested in stable releases of our add-ons: 28 | 29 | 30 | 31 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 32 | [discord]: https://discord.me/hassioaddons 33 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 34 | [forum]: https://community.home-assistant.io/?u=frenck 35 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2023-2024.svg 36 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 37 | [release-shield]: https://img.shields.io/badge/version-v0.4.1-blue.svg 38 | [release]: https://github.com/hassio-addons/addon-mqtt-io/tree/v0.4.1 -------------------------------------------------------------------------------- /mqtt-io/config.yaml: -------------------------------------------------------------------------------- 1 | name: MQTT IO 2 | version: 0.4.1 3 | slug: mqtt-io 4 | description: Expose GPIO modules and digital sensors via MQTT for remote control and 5 | monitoring. 6 | url: https://github.com/hassio-addons/addon-mqtt-io 7 | codenotary: codenotary@frenck.dev 8 | arch: 9 | - aarch64 10 | - amd64 11 | - armv7 12 | init: false 13 | homeassistant_api: true 14 | full_access: true 15 | privileged: 16 | - SYS_RAWIO 17 | map: 18 | - config:rw 19 | - share:rw 20 | - ssl 21 | options: 22 | configuration_file: /config/mqtt-io/config.yml 23 | schema: 24 | configuration_file: str 25 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 26 | image: ghcr.io/hassio-addons/mqtt-io/{arch} 27 | -------------------------------------------------------------------------------- /mqtt-io/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | configuration_file: 4 | name: MQTT IO Configuration File 5 | description: >- 6 | Location of the MQTT IO configuration file. 7 | log_level: 8 | name: Log level 9 | description: >- 10 | Controls the level of log details the add-on provides. 11 | -------------------------------------------------------------------------------- /nginxproxymanager/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ### 🚨 THIS RELEASE HAS MAJOR BREAKING CHANGES! 2 | ### 🛑 DO NOT UPGRADE WITHOUT READING THE RELEASE NOTES! 3 | ### ⚠️ BE SURE TO BACKUP BEFORE UPGRADING! 4 | 5 | **The v1.0.1 release is NOT backward-compatible with any existing installation prior v1.0.0.** 6 | 7 | Unfortunately, no stable/good migration path is possible; thus, on upgrade, you will **lose all your current NPM settings and configuration**. After the upgrade, you must set up your proxy configuration from scratch. 8 | 9 | **Please make sure you have the time to do this when you decide to upgrade.** 10 | 11 | After upgrading, you can log in with the default username & password: `admin@example.com` / `changeme`. 12 | 13 | Additionally, support for the `i386` and `armhf` OS/CPU architecture has been dropped (as has been dropped previously for all other Community Add-ons as well). 14 | 15 | [If you have any more questions, please check this issue.](https://github.com/hassio-addons/addon-nginx-proxy-manager/issues/507) 16 | 17 | ## What’s changed 18 | 19 | - Based on the latest Nginx Proxy Manager [v2.10.4](https://github.com/NginxProxyManager/nginx-proxy-manager/releases/tag/v2.10.4), which closes [CVE-2023-27224](https://www.cvedetails.com/cve/CVE-2023-27224/). 20 | - Based on the latest Alpine Linux 3.19. 21 | - The add-on no longer uses the MariaDB add-on. This means after you have upgraded/migrated, you could uninstall the MariaDB add-on (if you solely used it for NPM). 22 | - Certbot now functions properly, which means all DNS challenges work as expected. 23 | - Backups of this add-on are now complete. They will contain all data, settings, and certificates; and can be restored easily/as normal. 24 | - All raw configuration data of NPM is now accessible via the `adddons_config` folder (for example, using Samba). 25 | 26 | ## What’s changed 27 | 28 | ## 🐛 Bug fixes 29 | 30 | - Fix syntax error in certbot patch @frenck ([#510](https://github.com/hassio-addons/addon-nginx-proxy-manager/pull/510)) 31 | 32 | For all other changes in v1.0.0 see: -------------------------------------------------------------------------------- /nginxproxymanager/config.yaml: -------------------------------------------------------------------------------- 1 | name: Nginx Proxy Manager 2 | version: 1.0.1 3 | slug: nginxproxymanager 4 | description: Manage Nginx proxy hosts with a simple, powerful interface 5 | url: https://github.com/hassio-addons/addon-nginx-proxy-manager 6 | codenotary: codenotary@frenck.dev 7 | webui: http://[HOST]:[PORT:81] 8 | init: false 9 | arch: 10 | - aarch64 11 | - amd64 12 | - armv7 13 | hassio_api: true 14 | ports: 15 | 80/tcp: 80 16 | 81/tcp: 81 17 | 443/tcp: 443 18 | map: 19 | - addon_config:rw 20 | backup_exclude: 21 | - '*/logs' 22 | image: ghcr.io/hassio-addons/nginxproxymanager/{arch} 23 | -------------------------------------------------------------------------------- /nginxproxymanager/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/nginxproxymanager/icon.png -------------------------------------------------------------------------------- /nginxproxymanager/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/nginxproxymanager/logo.png -------------------------------------------------------------------------------- /nginxproxymanager/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | network: 3 | 80/tcp: HTTP Entrance port 4 | 81/tcp: NGinx Proxy Manager Admin web interface 5 | 443/tcp: HTTPS/SSL Entrance port 6 | -------------------------------------------------------------------------------- /node-red/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update alpine_3_21/openssh to v9.9_p2-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#2054](https://github.com/hassio-addons/addon-node-red/pull/2054)) 6 | -------------------------------------------------------------------------------- /node-red/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Node-RED 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] 8 | 9 | [![Support Frenck on Patreon][patreon-shield]][patreon] 10 | 11 | Flow-based programming for the Internet of Things. 12 | 13 | ## About 14 | 15 | [Node-RED][nodered] is a programming tool for wiring together hardware devices, 16 | APIs and online services in new and interesting ways. 17 | 18 | It provides a browser-based editor that makes it easy to wire together flows 19 | using the wide range of nodes in the palette that can be deployed to its 20 | runtime in a single click. 21 | 22 | ![Node-RED in the Home Assistant Frontend][screenshot] 23 | 24 | ## WARNING! THIS IS A BETA VERSION! 25 | 26 | This Home Assistant Add-ons repository contains beta releases of add-ons. 27 | 28 | - They might stop working at any time. 29 | - They could have a negative impact on your system. 30 | 31 | This repository was created for: 32 | 33 | - Anybody willing to test. 34 | - Anybody interested in trying out upcoming add-ons or add-on features. 35 | 36 | If you are more interested in stable releases of our add-ons: 37 | 38 | 39 | 40 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 41 | [discord]: https://discord.me/hassioaddons 42 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 43 | [forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-node-red/55023?u=frenck 44 | [github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png 45 | [github-sponsors]: https://github.com/sponsors/frenck 46 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 47 | [nodered]: https://nodered.org 48 | [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png 49 | [patreon]: https://www.patreon.com/frenck 50 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg 51 | [release-shield]: https://img.shields.io/badge/version-v19.0.2-blue.svg 52 | [release]: https://github.com/hassio-addons/addon-node-red/tree/v19.0.2 53 | [screenshot]: https://github.com/hassio-addons/addon-node-red/raw/main/images/screenshot.png -------------------------------------------------------------------------------- /node-red/config.yaml: -------------------------------------------------------------------------------- 1 | name: Node-RED 2 | version: 19.0.2 3 | slug: nodered 4 | description: Flow-based programming for the Internet of Things 5 | url: https://github.com/hassio-addons/addon-node-red 6 | codenotary: codenotary@frenck.dev 7 | ingress: true 8 | ingress_port: 0 9 | ingress_stream: true 10 | panel_icon: mdi:sitemap 11 | init: false 12 | homeassistant: 2023.3.0 13 | arch: 14 | - aarch64 15 | - amd64 16 | ports: 17 | 80/tcp: 1880 18 | ports_description: 19 | 80/tcp: Web interface 20 | hassio_api: true 21 | hassio_role: manager 22 | homeassistant_api: true 23 | host_network: true 24 | auth_api: true 25 | uart: true 26 | map: 27 | - addon_config:rw 28 | - homeassistant_config:rw 29 | - media:rw 30 | - share:rw 31 | - ssl 32 | backup_exclude: 33 | - node_modules 34 | options: 35 | theme: default 36 | http_node: 37 | username: '' 38 | password: '' 39 | http_static: 40 | username: '' 41 | password: '' 42 | ssl: true 43 | certfile: fullchain.pem 44 | keyfile: privkey.pem 45 | system_packages: [] 46 | npm_packages: [] 47 | init_commands: [] 48 | schema: 49 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 50 | credential_secret: password? 51 | theme: list(default|aurora|cobalt2|dark|dracula|espresso-libre|github-dark|github-dark-default|github-dark-dimmed|midnight-red|monoindustrial|monokai|monokai-dimmed|noctis|oceanic-next|oled|one-dark-pro|one-dark-pro-darker|solarized-dark|solarized-light|tokyo-night|tokyo-night-light|tokyo-night-storm|totallyinformation|zenburn)? 52 | http_node: 53 | username: str 54 | password: password 55 | http_static: 56 | username: str 57 | password: password 58 | ssl: bool 59 | certfile: str 60 | keyfile: str 61 | system_packages: 62 | - str 63 | npm_packages: 64 | - str 65 | init_commands: 66 | - str 67 | leave_front_door_open: bool? 68 | safe_mode: bool? 69 | max_old_space_size: int? 70 | image: ghcr.io/hassio-addons/node-red/{arch} 71 | -------------------------------------------------------------------------------- /node-red/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/node-red/icon.png -------------------------------------------------------------------------------- /node-red/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/node-red/logo.png -------------------------------------------------------------------------------- /nut/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🧰 Maintenance 4 | 5 | - 🎆 Updates maintenance/license year to 2025 @frenck ([#413](https://github.com/hassio-addons/addon-nut/pull/413)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update ghcr.io/hassio-addons/debian-base Docker tag to v7.6.3 @[renovate[bot]](https://github.com/apps/renovate) ([#401](https://github.com/hassio-addons/addon-nut/pull/401)) 10 | - ⬆️ Update ghcr.io/hassio-addons/debian-base Docker tag to v7.7.0 @[renovate[bot]](https://github.com/apps/renovate) ([#402](https://github.com/hassio-addons/addon-nut/pull/402)) 11 | - ⬆️: migrate renovate config @[renovate[bot]](https://github.com/apps/renovate) ([#412](https://github.com/hassio-addons/addon-nut/pull/412)) 12 | - ⬆️ Update ghcr.io/hassio-addons/debian-base Docker tag to v7.7.1 @[renovate[bot]](https://github.com/apps/renovate) ([#411](https://github.com/hassio-addons/addon-nut/pull/411)) 13 | -------------------------------------------------------------------------------- /nut/config.yaml: -------------------------------------------------------------------------------- 1 | name: Network UPS Tools 2 | version: 0.14.1 3 | slug: nut 4 | description: Manage battery backup (UPS) devices 5 | url: https://github.com/hassio-addons/addon-nut 6 | codenotary: codenotary@frenck.dev 7 | startup: system 8 | arch: 9 | - aarch64 10 | - amd64 11 | - armv7 12 | init: false 13 | uart: true 14 | udev: true 15 | usb: true 16 | hassio_api: true 17 | hassio_role: manager 18 | homeassistant_api: true 19 | ports: 20 | 3493/tcp: null 21 | ports_description: 22 | 3493/tcp: Network UPS Tools 23 | options: 24 | users: 25 | - username: '' 26 | password: '' 27 | instcmds: 28 | - all 29 | actions: [] 30 | devices: 31 | - name: myups 32 | driver: usbhid-ups 33 | port: auto 34 | config: [] 35 | mode: netserver 36 | shutdown_host: 'false' 37 | schema: 38 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 39 | users: 40 | - username: str 41 | password: password 42 | instcmds: 43 | - str 44 | actions: 45 | - str 46 | upsmon: list(master|slave)? 47 | devices: 48 | - name: str 49 | driver: str 50 | port: str 51 | powervalue: int? 52 | config: 53 | - str 54 | mode: list(netserver|netclient) 55 | shutdown_host: bool 56 | list_usb_devices: bool? 57 | remote_ups_name: str? 58 | remote_ups_host: str? 59 | remote_ups_password: password? 60 | remote_ups_user: str? 61 | upsd_maxage: int? 62 | upsmon_deadtime: int? 63 | i_like_to_be_pwned: bool? 64 | leave_front_door_open: bool? 65 | image: ghcr.io/hassio-addons/nut/{arch} 66 | -------------------------------------------------------------------------------- /nut/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/nut/icon.png -------------------------------------------------------------------------------- /nut/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/nut/logo.png -------------------------------------------------------------------------------- /overseerr/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | 🎉 Initial release 🎉 4 | -------------------------------------------------------------------------------- /overseerr/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Overseerr 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | Request management and media discovery tool for the Plex ecosystem. 8 | 9 | ## About 10 | 11 | [Overseerr] is a multi-platform binary newsgroup downloader. The program works in 12 | the background and simplifies the downloading verifying and extracting of files 13 | from [Usenet]. 14 | 15 | [Overseerr]: https://overseerr.org/ 16 | [Usenet]: http://en.wikipedia.org/wiki/Usenet 17 | 18 | ## WARNING! THIS IS A BETA VERSION! 19 | 20 | This Home Assistant Add-ons repository contains beta releases of add-ons. 21 | 22 | - They might stop working at any time. 23 | - They could have a negative impact on your system. 24 | 25 | This repository was created for: 26 | 27 | - Anybody willing to test. 28 | - Anybody interested in trying out upcoming add-ons or add-on features. 29 | 30 | If you are more interested in stable releases of our add-ons: 31 | 32 | 33 | 34 | [discord-shield]: https://img.shields.io/discord/330944238910963714.svg 35 | [discord]: https://discord.gg/c5DvZ4e 36 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 37 | [forum]: https://community.home-assistant.io/t/?u=frenck 38 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2024.svg 39 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 40 | [release-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg 41 | [release]: https://github.com/hassio-addons/addon-overseerr/tree/v0.1.0 -------------------------------------------------------------------------------- /overseerr/config.yaml: -------------------------------------------------------------------------------- 1 | name: Overseerr 2 | version: 0.1.0 3 | slug: overseerr 4 | description: Request management and media discovery tool for the Plex ecosystem 5 | url: https://github.com/hassio-addons/addon-overseerr/tree/main/README.md 6 | codenotary: codenotary@frenck.dev 7 | webui: http://[HOST]:[PORT:5055] 8 | init: false 9 | arch: 10 | - aarch64 11 | - amd64 12 | - armv7 13 | map: 14 | - addon_config:rw 15 | - share:rw 16 | - media:rw 17 | ports: 18 | 5055/tcp: 5055 19 | image: ghcr.io/hassio-addons/overseerr/{arch} 20 | -------------------------------------------------------------------------------- /overseerr/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/overseerr/icon.png -------------------------------------------------------------------------------- /overseerr/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/overseerr/logo.png -------------------------------------------------------------------------------- /phpmyadmin/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🧰 Maintenance 4 | 5 | - 🎆 Updates maintenance/license year to 2025 @frenck ([#234](https://github.com/hassio-addons/addon-phpmyadmin/pull/234)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.0.1 @[renovate[bot]](https://github.com/apps/renovate) ([#221](https://github.com/hassio-addons/addon-phpmyadmin/pull/221)) 10 | - ⬆️ Update PHP to v8.2.27-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#226](https://github.com/hassio-addons/addon-phpmyadmin/pull/226)) 11 | - ⬆️ Update alpine_3_21/nginx to v1.26.2-r4 @[renovate[bot]](https://github.com/apps/renovate) ([#227](https://github.com/hassio-addons/addon-phpmyadmin/pull/227)) 12 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.0.2 @[renovate[bot]](https://github.com/apps/renovate) ([#228](https://github.com/hassio-addons/addon-phpmyadmin/pull/228)) 13 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.0 @[renovate[bot]](https://github.com/apps/renovate) ([#229](https://github.com/hassio-addons/addon-phpmyadmin/pull/229)) 14 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.3 @[renovate[bot]](https://github.com/apps/renovate) ([#230](https://github.com/hassio-addons/addon-phpmyadmin/pull/230)) 15 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.4 @[renovate[bot]](https://github.com/apps/renovate) ([#231](https://github.com/hassio-addons/addon-phpmyadmin/pull/231)) 16 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.0 @[renovate[bot]](https://github.com/apps/renovate) ([#232](https://github.com/hassio-addons/addon-phpmyadmin/pull/232)) 17 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.1 @[renovate[bot]](https://github.com/apps/renovate) ([#233](https://github.com/hassio-addons/addon-phpmyadmin/pull/233)) 18 | -------------------------------------------------------------------------------- /phpmyadmin/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: phpMyAdmin 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] 8 | 9 | [![Support Frenck on Patreon][patreon-shield]][patreon] 10 | 11 | A web interface for the official MariaDB add-on. 12 | 13 | ## About 14 | 15 | phpMyAdmin is a database administration tool for MySQL & MariaDB. Frequently 16 | used operations (managing databases, tables, columns, relations, indexes, 17 | users, permissions, etc) can be performed via the user interface, 18 | while you still have the ability to directly execute any SQL statement. 19 | 20 | This add-on was specifically designed to manage the official Home Assistant 21 | MariaDB add-on. 22 | 23 | ![phpMyAdmin screenshot][screenshot] 24 | 25 | ## WARNING! THIS IS A BETA VERSION! 26 | 27 | This Home Assistant Add-ons repository contains beta releases of add-ons. 28 | 29 | - They might stop working at any time. 30 | - They could have a negative impact on your system. 31 | 32 | This repository was created for: 33 | 34 | - Anybody willing to test. 35 | - Anybody interested in trying out upcoming add-ons or add-on features. 36 | 37 | If you are more interested in stable releases of our add-ons: 38 | 39 | 40 | 41 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 42 | [discord]: https://discord.me/hassioaddons 43 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 44 | [forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-phpmyadmin/171729?u=frenck 45 | [github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png 46 | [github-sponsors]: https://github.com/sponsors/frenck 47 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 48 | [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png 49 | [patreon]: https://www.patreon.com/frenck 50 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 51 | [release-shield]: https://img.shields.io/badge/version-v0.11.1-blue.svg 52 | [release]: https://github.com/hassio-addons/addon-phpmyadmin/tree/v0.11.1 53 | [screenshot]: https://github.com/hassio-addons/addon-phpmyadmin/raw/main/images/screenshot.png -------------------------------------------------------------------------------- /phpmyadmin/config.yaml: -------------------------------------------------------------------------------- 1 | name: phpMyAdmin 2 | version: 0.11.1 3 | slug: phpmyadmin 4 | description: A web interface for the official MariaDB add-on 5 | url: https://github.com/hassio-addons/addon-phpmyadmin 6 | codenotary: codenotary@frenck.dev 7 | ingress: true 8 | ingress_stream: true 9 | panel_icon: mdi:database 10 | arch: 11 | - aarch64 12 | - amd64 13 | - armv7 14 | init: false 15 | services: 16 | - mysql:need 17 | hassio_api: true 18 | schema: 19 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 20 | upload_limit: int? 21 | image: ghcr.io/hassio-addons/phpmyadmin/{arch} 22 | -------------------------------------------------------------------------------- /phpmyadmin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/phpmyadmin/icon.png -------------------------------------------------------------------------------- /phpmyadmin/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/phpmyadmin/logo.png -------------------------------------------------------------------------------- /phpmyadmin/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: >- 6 | Controls the level of log details the add-on provides. 7 | -------------------------------------------------------------------------------- /plex/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update Plex Media Server to 1.41.5.9522 @TheRisenPhoenix (#248) 6 | -------------------------------------------------------------------------------- /plex/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Plex Media Server 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] 8 | 9 | [![Support Frenck on Patreon][patreon-shield]][patreon] 10 | 11 | Your recorded media, live TV, online news, and podcasts, beautifully organized 12 | and ready to stream. 13 | 14 | ## About 15 | 16 | The plex add-on brings your favorite media together in one place, making it 17 | beautiful and easy to enjoy. The Plex Media Server provided by this addon, 18 | organizes your personal video, music, and photo collections 19 | and streams them to all of your devices. 20 | 21 | ## WARNING! THIS IS A BETA VERSION! 22 | 23 | This Home Assistant Add-ons repository contains beta releases of add-ons. 24 | 25 | - They might stop working at any time. 26 | - They could have a negative impact on your system. 27 | 28 | This repository was created for: 29 | 30 | - Anybody willing to test. 31 | - Anybody interested in trying out upcoming add-ons or add-on features. 32 | 33 | If you are more interested in stable releases of our add-ons: 34 | 35 | 36 | 37 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 38 | [discord]: https://discord.me/hassioaddons 39 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 40 | [forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-plex-media-server/54383?u=frenck 41 | [github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png 42 | [github-sponsors]: https://github.com/sponsors/frenck 43 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 44 | [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png 45 | [patreon]: https://www.patreon.com/frenck 46 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg 47 | [release-shield]: https://img.shields.io/badge/version-v3.6.4-blue.svg 48 | [release]: https://github.com/hassio-addons/addon-plex/tree/v3.6.4 -------------------------------------------------------------------------------- /plex/config.yaml: -------------------------------------------------------------------------------- 1 | name: Plex Media Server 2 | version: 3.6.4 3 | slug: plex 4 | description: Recorded media, live TV, online news, and podcasts ready to stream. 5 | url: https://github.com/hassio-addons/addon-plex 6 | codenotary: codenotary@frenck.dev 7 | webui: http://[HOST]:[PORT:32400]/web 8 | startup: services 9 | init: false 10 | arch: 11 | - aarch64 12 | - amd64 13 | - armv7 14 | map: 15 | - media:rw 16 | - share:rw 17 | - ssl 18 | devices: 19 | - /dev/dri 20 | - /dev/dri/card0 21 | - /dev/dri/card1 22 | - /dev/dri/renderD128 23 | - /dev/vchiq 24 | ports: 25 | 3005/tcp: 3005 26 | 8324/tcp: 8324 27 | 32400/tcp: 32400 28 | 32410/udp: 32410 29 | 32412/udp: 32412 30 | 32413/udp: 32413 31 | 32414/udp: 32414 32 | 32469/tcp: 32469 33 | ports_description: 34 | 3005/tcp: Plex Home Theater via Plex Companion 35 | 8324/tcp: Plex for Roku via Plex Companion 36 | 32400/tcp: Plex Media Server Interface 37 | 32410/udp: GDM network discovery 38 | 32412/udp: GDM network discovery 39 | 32413/udp: GDM network discovery 40 | 32414/udp: GDM network discovery 41 | 32469/tcp: Plex DLNA Server 42 | hassio_api: true 43 | backup_exclude: 44 | - '**/Plex Media Server/Cache/**' 45 | - '**/Plex Media Server/Plug-in Support/Caches/**' 46 | - '**/Plex Media Server/Logs/**' 47 | - '**/Plex Media Server/Crash Reports/**' 48 | - '**/Plex Media Server/Diagnostics/**' 49 | options: 50 | claim_code: '' 51 | schema: 52 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 53 | claim_code: str 54 | image: ghcr.io/hassio-addons/plex/{arch} 55 | -------------------------------------------------------------------------------- /plex/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/plex/icon.png -------------------------------------------------------------------------------- /plex/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/plex/logo.png -------------------------------------------------------------------------------- /plex/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: >- 6 | Controls the level of log details the add-on provides. 7 | claim_code: 8 | name: Claim code 9 | description: >- 10 | To allow your server to sign-in to your Plex account, it needs a so-called 11 | "Claim Code". In order to get your code surf to: https://www.plex.tv/claim 12 | network: 13 | 3005/tcp: Plex Home Theater via Plex Companion 14 | 8324/tcp: Plex for Roku via Plex Companion 15 | 32400/tcp: Plex Media Server Interface 16 | 32410/udp: GDM network discovery 17 | 32412/udp: GDM network discovery 18 | 32413/udp: GDM network discovery 19 | 32414/udp: GDM network discovery 20 | 32469/tcp: Plex DLNA Server 21 | -------------------------------------------------------------------------------- /prowlarr/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update Prowlarr/Prowlarr to v1.36.3.5071 @[renovate[bot]](https://github.com/apps/renovate) ([#66](https://github.com/hassio-addons/addon-prowlarr/pull/66)) 6 | -------------------------------------------------------------------------------- /prowlarr/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Prowlarr 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | Indexer manager/proxy built on the popular arr stack to integrate with your various PVR apps. 8 | 9 | ## About 10 | 11 | [Prowlarr] is an indexer manager/proxy built on the popular *arr .net/reactjs 12 | base stack to integrate with your various PVR apps. Prowlarr supports management 13 | of both Torrent Trackers and Usenet Indexers. It integrates seamlessly with 14 | Lidarr, Mylar3, Radarr, Readarr, and Sonarr offering complete management of 15 | your indexers with no per app Indexer setup required (it does it all). 16 | 17 | [Prowlarr]: https://github.com/Prowlarr/Prowlarr 18 | 19 | ## WARNING! THIS IS A BETA VERSION! 20 | 21 | This Home Assistant Add-ons repository contains beta releases of add-ons. 22 | 23 | - They might stop working at any time. 24 | - They could have a negative impact on your system. 25 | 26 | This repository was created for: 27 | 28 | - Anybody willing to test. 29 | - Anybody interested in trying out upcoming add-ons or add-on features. 30 | 31 | If you are more interested in stable releases of our add-ons: 32 | 33 | 34 | 35 | [discord-shield]: https://img.shields.io/discord/330944238910963714.svg 36 | [discord]: https://discord.gg/c5DvZ4e 37 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 38 | [forum]: https://community.home-assistant.io/t/?u=frenck 39 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2024.svg 40 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 41 | [release-shield]: https://img.shields.io/badge/version-v0.23.0-blue.svg 42 | [release]: https://github.com/hassio-addons/addon-prowlarr/tree/v0.23.0 -------------------------------------------------------------------------------- /prowlarr/config.yaml: -------------------------------------------------------------------------------- 1 | name: Prowlarr 2 | version: 0.23.0 3 | slug: prowlarr 4 | description: Indexer manager/proxy built on the popular arr stack to integrate with 5 | your various PVR apps 6 | url: https://github.com/hassio-addons/addon-prowlarr/tree/main/README.md 7 | codenotary: codenotary@frenck.dev 8 | webui: http://[HOST]:[PORT:9696] 9 | init: false 10 | arch: 11 | - aarch64 12 | - amd64 13 | - armv7 14 | map: 15 | - addon_config:rw 16 | - share:rw 17 | - media:rw 18 | ports: 19 | 9696/tcp: 9696 20 | image: ghcr.io/hassio-addons/prowlarr/{arch} 21 | -------------------------------------------------------------------------------- /prowlarr/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/prowlarr/icon.png -------------------------------------------------------------------------------- /prowlarr/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/prowlarr/logo.png -------------------------------------------------------------------------------- /radarr/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update Radarr/Radarr to v5.25.0.10024 @[renovate[bot]](https://github.com/apps/renovate) ([#67](https://github.com/hassio-addons/addon-radarr/pull/67)) 6 | -------------------------------------------------------------------------------- /radarr/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Radarr 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | Movie organizer/manager for usenet and torrent users. 8 | 9 | ## About 10 | 11 | [Radarr] is a movie collection manager for Usenet and BitTorrent users. It can 12 | monitor multiple RSS feeds for new movies and will interface with clients and 13 | indexers to grab, sort, and rename them. It can also be configured to 14 | automatically upgrade the quality of existing files in the library when 15 | a better quality format becomes available. 16 | 17 | [Radarr]: https://radarr.video/ 18 | 19 | ## WARNING! THIS IS A BETA VERSION! 20 | 21 | This Home Assistant Add-ons repository contains beta releases of add-ons. 22 | 23 | - They might stop working at any time. 24 | - They could have a negative impact on your system. 25 | 26 | This repository was created for: 27 | 28 | - Anybody willing to test. 29 | - Anybody interested in trying out upcoming add-ons or add-on features. 30 | 31 | If you are more interested in stable releases of our add-ons: 32 | 33 | 34 | 35 | [discord-shield]: https://img.shields.io/discord/330944238910963714.svg 36 | [discord]: https://discord.gg/c5DvZ4e 37 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 38 | [forum]: https://community.home-assistant.io/t/?u=frenck 39 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 40 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 41 | [release-shield]: https://img.shields.io/badge/version-v0.23.0-blue.svg 42 | [release]: https://github.com/hassio-addons/addon-radarr/tree/v0.23.0 -------------------------------------------------------------------------------- /radarr/config.yaml: -------------------------------------------------------------------------------- 1 | name: Radarr 2 | version: 0.23.0 3 | slug: radarr 4 | description: Movie organizer/manager for usenet and torrent users 5 | url: https://github.com/hassio-addons/addon-radarr/tree/main/README.md 6 | codenotary: codenotary@frenck.dev 7 | webui: http://[HOST]:[PORT:7878] 8 | init: false 9 | arch: 10 | - aarch64 11 | - amd64 12 | - armv7 13 | map: 14 | - addon_config:rw 15 | - share:rw 16 | - media:rw 17 | ports: 18 | 7878/tcp: 7878 19 | image: ghcr.io/hassio-addons/radarr/{arch} 20 | -------------------------------------------------------------------------------- /radarr/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/radarr/icon.png -------------------------------------------------------------------------------- /radarr/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/radarr/logo.png -------------------------------------------------------------------------------- /readarr/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🧰 Maintenance 4 | 5 | - 🎆 Updates maintenance/license year to 2025 @frenck ([#38](https://github.com/hassio-addons/addon-readarr/pull/38)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.0.1 @[renovate[bot]](https://github.com/apps/renovate) ([#26](https://github.com/hassio-addons/addon-readarr/pull/26)) 10 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.0.2 @[renovate[bot]](https://github.com/apps/renovate) ([#27](https://github.com/hassio-addons/addon-readarr/pull/27)) 11 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.0 @[renovate[bot]](https://github.com/apps/renovate) ([#28](https://github.com/hassio-addons/addon-readarr/pull/28)) 12 | - ⬆️ Update alpine_3_21/sqlite-libs to v3.48.0-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#29](https://github.com/hassio-addons/addon-readarr/pull/29)) 13 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.1 @[renovate[bot]](https://github.com/apps/renovate) ([#30](https://github.com/hassio-addons/addon-readarr/pull/30)) 14 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.2 @[renovate[bot]](https://github.com/apps/renovate) ([#31](https://github.com/hassio-addons/addon-readarr/pull/31)) 15 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.3 @[renovate[bot]](https://github.com/apps/renovate) ([#32](https://github.com/hassio-addons/addon-readarr/pull/32)) 16 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.4 @[renovate[bot]](https://github.com/apps/renovate) ([#33](https://github.com/hassio-addons/addon-readarr/pull/33)) 17 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.5 @[renovate[bot]](https://github.com/apps/renovate) ([#34](https://github.com/hassio-addons/addon-readarr/pull/34)) 18 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.0 @[renovate[bot]](https://github.com/apps/renovate) ([#35](https://github.com/hassio-addons/addon-readarr/pull/35)) 19 | - Migrate renovate config @[renovate[bot]](https://github.com/apps/renovate) ([#36](https://github.com/hassio-addons/addon-readarr/pull/36)) 20 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.1 @[renovate[bot]](https://github.com/apps/renovate) ([#37](https://github.com/hassio-addons/addon-readarr/pull/37)) 21 | -------------------------------------------------------------------------------- /readarr/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Readarr 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | Book Manager and Automation (Sonarr for Ebooks). 8 | 9 | ## About 10 | 11 | [Readarr] is an ebook and audiobook collection manager for Usenet and BitTorrent 12 | users. It can monitor multiple RSS feeds for new books from your favorite 13 | authors and will grab, sort, and rename them. Note that only one type of a 14 | given book is supported. 15 | 16 | [Readarr]: https://readarr.com 17 | 18 | ## WARNING! THIS IS A BETA VERSION! 19 | 20 | This Home Assistant Add-ons repository contains beta releases of add-ons. 21 | 22 | - They might stop working at any time. 23 | - They could have a negative impact on your system. 24 | 25 | This repository was created for: 26 | 27 | - Anybody willing to test. 28 | - Anybody interested in trying out upcoming add-ons or add-on features. 29 | 30 | If you are more interested in stable releases of our add-ons: 31 | 32 | 33 | 34 | [discord-shield]: https://img.shields.io/discord/330944238910963714.svg 35 | [discord]: https://discord.gg/c5DvZ4e 36 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 37 | [forum]: https://community.home-assistant.io/t/?u=frenck 38 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 39 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 40 | [release-shield]: https://img.shields.io/badge/version-v0.3.1-blue.svg 41 | [release]: https://github.com/hassio-addons/addon-readarr/tree/v0.3.1 -------------------------------------------------------------------------------- /readarr/config.yaml: -------------------------------------------------------------------------------- 1 | name: Readarr 2 | version: 0.3.1 3 | slug: readarr 4 | description: Book Manager and Automation (Sonarr for Ebooks) 5 | url: https://github.com/hassio-addons/addon-readarr/tree/main/README.md 6 | codenotary: codenotary@frenck.dev 7 | webui: http://[HOST]:[PORT:8787] 8 | init: false 9 | arch: 10 | - aarch64 11 | - amd64 12 | - armv7 13 | map: 14 | - addon_config:rw 15 | - share:rw 16 | - media:rw 17 | ports: 18 | 8787/tcp: 8787 19 | image: ghcr.io/hassio-addons/readarr/{arch} 20 | -------------------------------------------------------------------------------- /readarr/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/readarr/icon.png -------------------------------------------------------------------------------- /readarr/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/readarr/logo.png -------------------------------------------------------------------------------- /repository.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Home Assistant Community Add-ons - BETA", 3 | "url": "https://addons.community", 4 | "maintainer": "Franck Nijhof " 5 | } 6 | -------------------------------------------------------------------------------- /sabnzbd/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.3 @[renovate[bot]](https://github.com/apps/renovate) ([#74](https://github.com/hassio-addons/addon-sabnzbd/pull/74)) 6 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.4 @[renovate[bot]](https://github.com/apps/renovate) ([#75](https://github.com/hassio-addons/addon-sabnzbd/pull/75)) 7 | - ⬆️ Update alpine_3_21/python3-dev to v3.12.10-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#77](https://github.com/hassio-addons/addon-sabnzbd/pull/77)) 8 | - ⬆️ Update alpine_3_21/python3 to v3.12.10-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#76](https://github.com/hassio-addons/addon-sabnzbd/pull/76)) 9 | - ⬆️ Update sabnzbd/sabnzbd to v4.5.1 @[renovate[bot]](https://github.com/apps/renovate) ([#78](https://github.com/hassio-addons/addon-sabnzbd/pull/78)) 10 | -------------------------------------------------------------------------------- /sabnzbd/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: SABnzbd 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | Free and easy binary newsreader. 8 | 9 | ## About 10 | 11 | [SABnzbd] is a multi-platform binary newsgroup downloader. The program works in 12 | the background and simplifies the downloading verifying and extracting of files 13 | from [Usenet]. 14 | 15 | [SABnzbd]: https://sabnzbd.org/ 16 | [Usenet]: http://en.wikipedia.org/wiki/Usenet 17 | 18 | ## WARNING! THIS IS A BETA VERSION! 19 | 20 | This Home Assistant Add-ons repository contains beta releases of add-ons. 21 | 22 | - They might stop working at any time. 23 | - They could have a negative impact on your system. 24 | 25 | This repository was created for: 26 | 27 | - Anybody willing to test. 28 | - Anybody interested in trying out upcoming add-ons or add-on features. 29 | 30 | If you are more interested in stable releases of our add-ons: 31 | 32 | 33 | 34 | [discord-shield]: https://img.shields.io/discord/330944238910963714.svg 35 | [discord]: https://discord.gg/c5DvZ4e 36 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 37 | [forum]: https://community.home-assistant.io/t/?u=frenck 38 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 39 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 40 | [release-shield]: https://img.shields.io/badge/version-v0.4.1-blue.svg 41 | [release]: https://github.com/hassio-addons/addon-sabnzbd/tree/v0.4.1 -------------------------------------------------------------------------------- /sabnzbd/config.yaml: -------------------------------------------------------------------------------- 1 | name: SABnzbd 2 | version: 0.4.1 3 | slug: sabnzbd 4 | description: Free and easy binary newsreader 5 | url: https://github.com/hassio-addons/addon-sabnzbd/tree/main/README.md 6 | codenotary: codenotary@frenck.dev 7 | ingress: true 8 | ingress_entry: sabnzbd/ 9 | panel_icon: mdi:arrow-down-bold 10 | init: false 11 | arch: 12 | - aarch64 13 | - amd64 14 | - armv7 15 | map: 16 | - addon_config:rw 17 | - share:rw 18 | - media:rw 19 | ports: 20 | 8080/tcp: null 21 | image: ghcr.io/hassio-addons/sabnzbd/{arch} 22 | -------------------------------------------------------------------------------- /sabnzbd/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/sabnzbd/icon.png -------------------------------------------------------------------------------- /sabnzbd/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/sabnzbd/logo.png -------------------------------------------------------------------------------- /sonarr/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.2 @[renovate[bot]](https://github.com/apps/renovate) ([#55](https://github.com/hassio-addons/addon-sonarr/pull/55)) 6 | - ⬆️ Update Sonarr/Sonarr to v4.0.14.2939 @[renovate[bot]](https://github.com/apps/renovate) ([#54](https://github.com/hassio-addons/addon-sonarr/pull/54)) 7 | -------------------------------------------------------------------------------- /sonarr/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Sonarr 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | Smart PVR for newsgroup and bittorrent users. 8 | 9 | ## About 10 | 11 | [Sonarr] is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS 12 | feeds for new episodes of your favorite shows and will grab, sort and rename 13 | them. It can also be configured to automatically upgrade the quality of files 14 | already downloaded when a better quality format becomes available. 15 | 16 | [Sonarr]: https://sonarr.tv/ 17 | 18 | ## WARNING! THIS IS A BETA VERSION! 19 | 20 | This Home Assistant Add-ons repository contains beta releases of add-ons. 21 | 22 | - They might stop working at any time. 23 | - They could have a negative impact on your system. 24 | 25 | This repository was created for: 26 | 27 | - Anybody willing to test. 28 | - Anybody interested in trying out upcoming add-ons or add-on features. 29 | 30 | If you are more interested in stable releases of our add-ons: 31 | 32 | 33 | 34 | [discord-shield]: https://img.shields.io/discord/330944238910963714.svg 35 | [discord]: https://discord.gg/c5DvZ4e 36 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 37 | [forum]: https://community.home-assistant.io/t/?u=frenck 38 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 39 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 40 | [release-shield]: https://img.shields.io/badge/version-v0.3.3-blue.svg 41 | [release]: https://github.com/hassio-addons/addon-sonarr/tree/v0.3.3 -------------------------------------------------------------------------------- /sonarr/config.yaml: -------------------------------------------------------------------------------- 1 | name: Sonarr 2 | version: 0.3.3 3 | slug: sonarr 4 | description: Smart PVR for newsgroup and bittorrent users 5 | url: https://github.com/hassio-addons/addon-sonarr/tree/main/README.md 6 | codenotary: codenotary@frenck.dev 7 | webui: http://[HOST]:[PORT:8989] 8 | init: false 9 | arch: 10 | - aarch64 11 | - amd64 12 | map: 13 | - addon_config:rw 14 | - share:rw 15 | - media:rw 16 | ports: 17 | 8989/tcp: 8989 18 | image: ghcr.io/hassio-addons/sonarr/{arch} 19 | -------------------------------------------------------------------------------- /sonarr/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/sonarr/icon.png -------------------------------------------------------------------------------- /sonarr/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/sonarr/logo.png -------------------------------------------------------------------------------- /spotify/config.yaml: -------------------------------------------------------------------------------- 1 | name: Spotify Connect 2 | version: 0.14.0 3 | slug: spotify 4 | description: Play Spotify music on your Home Assistant device 5 | url: https://github.com/hassio-addons/addon-spotify-connect 6 | codenotary: codenotary@frenck.dev 7 | arch: 8 | - aarch64 9 | - amd64 10 | - armv7 11 | host_network: true 12 | audio: true 13 | init: false 14 | options: 15 | name: Home Assistant 16 | bitrate: 160 17 | initial_volume: 50 18 | autoplay: true 19 | schema: 20 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 21 | name: str 22 | bitrate: list(96|160|320) 23 | username: str? 24 | password: password? 25 | autoplay: bool 26 | initial_volume: match(^([0-9]|[1-9][0-9]|100)$)? 27 | image: ghcr.io/hassio-addons/spotify/{arch} 28 | -------------------------------------------------------------------------------- /spotify/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/spotify/icon.png -------------------------------------------------------------------------------- /spotify/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/spotify/logo.png -------------------------------------------------------------------------------- /spotify/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: >- 6 | Controls the level of log details the add-on provides. 7 | name: 8 | name: Name 9 | description: >- 10 | The name of your device (the Spotify Connect target), as shown on 11 | the official Spotify clients. 12 | bitrate: 13 | name: Bitrate 14 | description: >- 15 | The bitrate Spotify should use. The higher, the better the sound quality, 16 | however, the add-on consumes more data. 17 | initial_volume: 18 | name: Initial Volume 19 | description: >- 20 | Initial volume in % from 0-100. 21 | username: 22 | name: Spotify username 23 | description: >- 24 | An optional username that you use to login to your Spotify Premium 25 | account. This can be helpful when experiencing discovery issues. 26 | password: 27 | name: Spotify password 28 | description: >- 29 | The password to log into your Spotify Premium account with. 30 | autoplay: 31 | name: Autoplay 32 | description: >- 33 | Whether Spotify should autoplay similar songs at the end of the queue. 34 | -------------------------------------------------------------------------------- /spotify/translations/hu.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Naplózási szint 5 | description: >- 6 | Ez vezérli, hogy a kiegészítő milyen részletesen legyen naplózva. 7 | name: 8 | name: Név 9 | description: >- 10 | Az új, Spotify Connect céleszköz neve. Ez jelenik meg a hivatalos 11 | Spotify kliensekben. 12 | bitrate: 13 | name: Bitráta 14 | description: >- 15 | A Spotify által használt bitráta beállítása. Minél magasabb, annál jobb 16 | minőségű, viszont ez nagyobb adatforgalommal jár. 17 | initial_volume: 18 | name: Kezdeti térfogat 19 | description: >- 20 | Kezdeti térfogat %-ban 0-100 között. 21 | username: 22 | name: Spotify felhasználónév 23 | description: >- 24 | Spotify Premium előfizetéssel rendelkező fiók felhasználóneve. 25 | Ez akkor lehet hasznos, ha a Spotify alkalmazás nem találja 26 | ezt a kiegészítőt. (Opcionális) 27 | password: 28 | name: Spotify jelszó 29 | description: >- 30 | Spotify Premium előfizetéssel rendelkező fiók jelszava. 31 | -------------------------------------------------------------------------------- /spotify/translations/it.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Livello Log 5 | description: >- 6 | Controlla il livello di dettaglio dei log dati dall'add-on. 7 | name: 8 | name: Nome 9 | description: >- 10 | Il nome del tuo dispositivo mostrato sui 11 | client ufficiali di Spotify. 12 | bitrate: 13 | name: Bitrate 14 | description: >- 15 | Il bitrate che Spotify dovrebbe usare. Piú é alto, migliore é la qualitá sonora, 16 | tuttavia, l'add-on consumerá piú banda. 17 | initial_volume: 18 | name: Volume Iniziale 19 | description: >- 20 | Volume iniziale in % da 0 a 100. 21 | username: 22 | name: Spotify username 23 | description: >- 24 | Uno username opzionale che puoi usare per accedere al tuo account Spotify Premium. 25 | Puó essere utile se hai problemi con l'auto discovery. 26 | password: 27 | name: Spotify password 28 | description: >- 29 | La password per accedere al tuo account Spotify Premium. 30 | -------------------------------------------------------------------------------- /sqlite-web/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🧰 Maintenance 4 | 5 | - 🎆 Updates maintenance/license year to 2025 @frenck ([#353](https://github.com/hassio-addons/addon-sqlite-web/pull/353)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update alpine_3_21/python3 to v3.12.8-r1 @[renovate[bot]](https://github.com/apps/renovate) ([#338](https://github.com/hassio-addons/addon-sqlite-web/pull/338)) 10 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.0.1 @[renovate[bot]](https://github.com/apps/renovate) ([#339](https://github.com/hassio-addons/addon-sqlite-web/pull/339)) 11 | - ⬆️ Update alpine_3_21/nginx to v1.26.2-r4 @[renovate[bot]](https://github.com/apps/renovate) ([#340](https://github.com/hassio-addons/addon-sqlite-web/pull/340)) 12 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.0.2 @[renovate[bot]](https://github.com/apps/renovate) ([#342](https://github.com/hassio-addons/addon-sqlite-web/pull/342)) 13 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.0 @[renovate[bot]](https://github.com/apps/renovate) ([#345](https://github.com/hassio-addons/addon-sqlite-web/pull/345)) 14 | - ⬆️ Update alpine_3_21/python3 to v3.12.9-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#348](https://github.com/hassio-addons/addon-sqlite-web/pull/348)) 15 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.3 @[renovate[bot]](https://github.com/apps/renovate) ([#347](https://github.com/hassio-addons/addon-sqlite-web/pull/347)) 16 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.4 @[renovate[bot]](https://github.com/apps/renovate) ([#349](https://github.com/hassio-addons/addon-sqlite-web/pull/349)) 17 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.0 @[renovate[bot]](https://github.com/apps/renovate) ([#350](https://github.com/hassio-addons/addon-sqlite-web/pull/350)) 18 | - Migrate renovate config @[renovate[bot]](https://github.com/apps/renovate) ([#351](https://github.com/hassio-addons/addon-sqlite-web/pull/351)) 19 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.1 @[renovate[bot]](https://github.com/apps/renovate) ([#352](https://github.com/hassio-addons/addon-sqlite-web/pull/352)) 20 | -------------------------------------------------------------------------------- /sqlite-web/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: SQLite Web 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | Explore your Home-Assistant database from your web browser! 8 | 9 | ## About 10 | 11 | This enables you to easily explore all tables and content that is saved in your database. 12 | 13 | ![SQLite Web screenshot][screenshot] 14 | 15 | ## WARNING! THIS IS A BETA VERSION! 16 | 17 | This Home Assistant Add-ons repository contains beta releases of add-ons. 18 | 19 | - They might stop working at any time. 20 | - They could have a negative impact on your system. 21 | 22 | This repository was created for: 23 | 24 | - Anybody willing to test. 25 | - Anybody interested in trying out upcoming add-ons or add-on features. 26 | 27 | If you are more interested in stable releases of our add-ons: 28 | 29 | 30 | 31 | [discord-shield]: https://img.shields.io/discord/330944238910963714.svg 32 | [discord]: https://discord.gg/c5DvZ4e 33 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 34 | [forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-sqlite-web/68912?u=frenck 35 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 36 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 37 | [release-shield]: https://img.shields.io/badge/version-v4.3.1-blue.svg 38 | [release]: https://github.com/hassio-addons/addon-sqlite-web/tree/v4.3.1 39 | [screenshot]: https://github.com/hassio-addons/addon-sqlite-web/raw/main/images/sample-view.png -------------------------------------------------------------------------------- /sqlite-web/config.yaml: -------------------------------------------------------------------------------- 1 | name: SQLite Web 2 | version: 4.3.1 3 | slug: sqlite-web 4 | description: Explore your SQLite database 5 | url: https://github.com/hassio-addons/addon-sqlite-web/tree/main/README.md 6 | codenotary: codenotary@frenck.dev 7 | ingress: true 8 | advanced: true 9 | init: false 10 | panel_icon: mdi:database 11 | arch: 12 | - aarch64 13 | - amd64 14 | - armv7 15 | map: 16 | - homeassistant_config:rw 17 | - share:rw 18 | schema: 19 | database: str? 20 | image: ghcr.io/hassio-addons/sqlite-web/{arch} 21 | -------------------------------------------------------------------------------- /sqlite-web/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/sqlite-web/icon.png -------------------------------------------------------------------------------- /sqlite-web/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/sqlite-web/logo.png -------------------------------------------------------------------------------- /sqlite-web/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | database: 4 | name: Database 5 | description: >- 6 | Path to a custom database location to use. This can be helpful in case 7 | your database isn't in the default location. 8 | -------------------------------------------------------------------------------- /ssh/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update alpine_3_21/bind-tools to v9.18.34-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#858](https://github.com/hassio-addons/addon-ssh/pull/858)) 6 | - ⬆️ Update alpine_3_21/mariadb-client to v11.4.5-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#863](https://github.com/hassio-addons/addon-ssh/pull/863)) 7 | - ⬆️ Update alpine_3_21/libffi-dev to v3.4.7-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#864](https://github.com/hassio-addons/addon-ssh/pull/864)) 8 | -------------------------------------------------------------------------------- /ssh/config.yaml: -------------------------------------------------------------------------------- 1 | name: Advanced SSH & Web Terminal 2 | version: 20.0.2 3 | slug: ssh 4 | description: A supercharged SSH & Web Terminal access to your Home Assistant instance 5 | url: https://github.com/hassio-addons/addon-ssh 6 | codenotary: codenotary@frenck.dev 7 | startup: services 8 | ingress: true 9 | ingress_port: 0 10 | ingress_stream: true 11 | init: false 12 | panel_icon: mdi:console 13 | panel_title: Terminal 14 | homeassistant: 0.92.0b2 15 | arch: 16 | - aarch64 17 | - amd64 18 | - armv7 19 | ports: 20 | 22/tcp: 22 21 | ports_description: 22 | 22/tcp: SSH server port (make empty to disable) 23 | hassio_api: true 24 | hassio_role: manager 25 | services: 26 | - mysql:want 27 | - mqtt:want 28 | homeassistant_api: true 29 | host_network: true 30 | uart: true 31 | usb: true 32 | gpio: true 33 | audio: true 34 | apparmor: false 35 | host_dbus: true 36 | docker_api: true 37 | privileged: 38 | - NET_ADMIN 39 | - SYS_ADMIN 40 | - SYS_RAWIO 41 | - SYS_TIME 42 | - SYS_NICE 43 | devices: 44 | - /dev/mem 45 | map: 46 | - addons:rw 47 | - all_addon_configs:rw 48 | - backup:rw 49 | - homeassistant_config:rw 50 | - media:rw 51 | - share:rw 52 | - ssl:rw 53 | journald: true 54 | options: 55 | ssh: 56 | username: hassio 57 | password: '' 58 | authorized_keys: [] 59 | sftp: false 60 | compatibility_mode: false 61 | allow_agent_forwarding: false 62 | allow_remote_port_forwarding: false 63 | allow_tcp_forwarding: false 64 | zsh: true 65 | share_sessions: false 66 | packages: [] 67 | init_commands: [] 68 | schema: 69 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 70 | ssh: 71 | username: str 72 | password: password 73 | authorized_keys: 74 | - str 75 | sftp: bool 76 | compatibility_mode: bool 77 | allow_agent_forwarding: bool 78 | allow_remote_port_forwarding: bool 79 | allow_tcp_forwarding: bool 80 | zsh: bool 81 | share_sessions: bool 82 | packages: 83 | - str 84 | init_commands: 85 | - str 86 | image: ghcr.io/hassio-addons/ssh/{arch} 87 | -------------------------------------------------------------------------------- /ssh/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/ssh/icon.png -------------------------------------------------------------------------------- /ssh/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/ssh/logo.png -------------------------------------------------------------------------------- /tailscale/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Tailscale 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] 8 | 9 | [![Support Frenck on Patreon][patreon-shield]][patreon] 10 | 11 | Zero config VPN for building secure networks. 12 | 13 | ## About 14 | 15 | Tailscale is a zero config VPN, which installs on any device in minutes, 16 | including your Home Assistant instance. 17 | 18 | Create a secure network between your servers, computers, and cloud instances. 19 | Even when separated by firewalls or subnets, Tailscale just works. Tailscale 20 | manages firewall rules for you, and works from anywhere you are. 21 | 22 | ## WARNING! THIS IS A BETA VERSION! 23 | 24 | This Home Assistant Add-ons repository contains beta releases of add-ons. 25 | 26 | - They might stop working at any time. 27 | - They could have a negative impact on your system. 28 | 29 | This repository was created for: 30 | 31 | - Anybody willing to test. 32 | - Anybody interested in trying out upcoming add-ons or add-on features. 33 | 34 | If you are more interested in stable releases of our add-ons: 35 | 36 | 37 | 38 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 39 | [discord]: https://discord.me/hassioaddons 40 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 41 | [forum]: https://community.home-assistant.io/?u=frenck 42 | [github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png 43 | [github-sponsors]: https://github.com/sponsors/frenck 44 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 45 | [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png 46 | [patreon]: https://www.patreon.com/frenck 47 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 48 | [release-shield]: https://img.shields.io/badge/version-v0.25.0-blue.svg 49 | [release]: https://github.com/hassio-addons/addon-tailscale/tree/v0.25.0 -------------------------------------------------------------------------------- /tailscale/config.yaml: -------------------------------------------------------------------------------- 1 | name: Tailscale 2 | version: 0.25.0 3 | slug: tailscale 4 | description: Zero config VPN for building secure networks 5 | url: https://github.com/hassio-addons/addon-tailscale 6 | codenotary: codenotary@frenck.dev 7 | ingress: true 8 | ingress_port: 0 9 | ingress_stream: true 10 | startup: services 11 | panel_icon: mdi:vpn 12 | arch: 13 | - aarch64 14 | - amd64 15 | - armv7 16 | init: false 17 | hassio_api: true 18 | host_network: true 19 | host_dbus: true 20 | privileged: 21 | - NET_ADMIN 22 | - NET_RAW 23 | devices: 24 | - /dev/net/tun 25 | map: 26 | - share:rw 27 | ports: 28 | 41641/udp: null 29 | schema: 30 | accept_dns: bool? 31 | accept_routes: bool? 32 | advertise_exit_node: bool? 33 | advertise_connector: bool? 34 | advertise_routes: 35 | - match(^(((25[0-5]|(2[0-4]|1\d|[1-9]?)\d)\.){3}(25[0-5]|(2[0-4]|1\d|[1-9]?)\d)\/(3[0-2]|[12]?\d)|[a-fA-F\d.:]+:[a-fA-F\d.:]+\/(12[0-8]|(1[01]|[1-9]?)\d))$)? 36 | funnel: bool? 37 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 38 | login_server: url? 39 | proxy: bool? 40 | proxy_and_funnel_port: match(^(443|8443|10000)$)? 41 | snat_subnet_routes: bool? 42 | stateful_filtering: bool? 43 | tags: 44 | - match(^tag:[a-zA-Z][a-zA-Z0-9-]*$)? 45 | taildrop: bool? 46 | userspace_networking: bool? 47 | image: ghcr.io/hassio-addons/tailscale/{arch} 48 | -------------------------------------------------------------------------------- /tailscale/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/tailscale/icon.png -------------------------------------------------------------------------------- /tailscale/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/tailscale/logo.png -------------------------------------------------------------------------------- /tasmoadmin/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🐛 Bug fixes 4 | 5 | - Change nginx startup logic to ensure file permission on every startup @dstengele ([#471](https://github.com/hassio-addons/addon-tasmoadmin/pull/471)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update PHP to v8.3.17-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#465](https://github.com/hassio-addons/addon-tasmoadmin/pull/465)) 10 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.5 @[renovate[bot]](https://github.com/apps/renovate) ([#464](https://github.com/hassio-addons/addon-tasmoadmin/pull/464)) 11 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.0 @[renovate[bot]](https://github.com/apps/renovate) ([#466](https://github.com/hassio-addons/addon-tasmoadmin/pull/466)) 12 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.1 @[renovate[bot]](https://github.com/apps/renovate) ([#467](https://github.com/hassio-addons/addon-tasmoadmin/pull/467)) 13 | - ⬆️ Update alpine_3_21/nginx to v1.26.3-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#469](https://github.com/hassio-addons/addon-tasmoadmin/pull/469)) 14 | - ⬆️ Update PHP to v8.3.18-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#468](https://github.com/hassio-addons/addon-tasmoadmin/pull/468)) 15 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.2 @[renovate[bot]](https://github.com/apps/renovate) ([#470](https://github.com/hassio-addons/addon-tasmoadmin/pull/470)) 16 | -------------------------------------------------------------------------------- /tasmoadmin/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: TasmoAdmin 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] 8 | 9 | [![Support Frenck on Patreon][patreon-shield]][patreon] 10 | 11 | Centrally manage all your Sonoff-Tasmota devices. 12 | 13 | ## About 14 | 15 | TasmoAdmin (formerly known as SonWEB) is an administrative web interface to 16 | manage all your Sonoff-Tasmota flashed devices centrally. 17 | Some of its features: 18 | 19 | - Scans your networks and adds your devices automatically 20 | - See the status off all your devices quick and easy 21 | - Configure all your devices from a single place 22 | - Send out firmware updates over the air to one or more your devices at once 23 | - Can automatically download the latest firmware for you 24 | 25 | ![TasmoAdmin screenshot][screenshot] 26 | 27 | ## WARNING! THIS IS A BETA VERSION! 28 | 29 | This Home Assistant Add-ons repository contains beta releases of add-ons. 30 | 31 | - They might stop working at any time. 32 | - They could have a negative impact on your system. 33 | 34 | This repository was created for: 35 | 36 | - Anybody willing to test. 37 | - Anybody interested in trying out upcoming add-ons or add-on features. 38 | 39 | If you are more interested in stable releases of our add-ons: 40 | 41 | 42 | 43 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 44 | [discord]: https://discord.me/hassioaddons 45 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 46 | [forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-tasmoadmin/54155?u=frenck 47 | [github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png 48 | [github-sponsors]: https://github.com/sponsors/frenck 49 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 50 | [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png 51 | [patreon]: https://www.patreon.com/frenck 52 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 53 | [release-shield]: https://img.shields.io/badge/version-v0.31.5-blue.svg 54 | [release]: https://github.com/hassio-addons/addon-tasmoadmin/tree/v0.31.5 55 | [screenshot]: https://github.com/hassio-addons/addon-tasmoadmin/raw/main/images/screenshot.png -------------------------------------------------------------------------------- /tasmoadmin/config.yaml: -------------------------------------------------------------------------------- 1 | name: TasmoAdmin 2 | version: 0.31.5 3 | slug: sonweb 4 | description: Centrally manage all your Sonoff-Tasmota devices 5 | url: https://github.com/hassio-addons/addon-tasmoadmin 6 | codenotary: codenotary@frenck.dev 7 | webui: '[PROTO:ssl]://[HOST]:[PORT:9541]' 8 | startup: system 9 | init: false 10 | arch: 11 | - aarch64 12 | - amd64 13 | - armv7 14 | map: 15 | - ssl 16 | ports: 17 | 9541/tcp: 9541 18 | ports_description: 19 | 9541/tcp: TasmoAdmin web interface 20 | options: 21 | ssl: true 22 | certfile: fullchain.pem 23 | keyfile: privkey.pem 24 | schema: 25 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 26 | ssl: bool 27 | certfile: str 28 | keyfile: str 29 | image: ghcr.io/hassio-addons/tasmoadmin/{arch} 30 | -------------------------------------------------------------------------------- /tasmoadmin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/tasmoadmin/icon.png -------------------------------------------------------------------------------- /tasmoadmin/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/tasmoadmin/logo.png -------------------------------------------------------------------------------- /tasmoadmin/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: >- 6 | Controls the level of log details the add-on provides. 7 | ssl: 8 | name: SSL 9 | description: >- 10 | Enables/Disables SSL (HTTPS) on the web interface. 11 | certfile: 12 | name: Certificate file 13 | description: >- 14 | The certificate file to use for SSL. Note that this file must 15 | exist in the /ssl/ folder. 16 | keyfile: 17 | name: Private key file 18 | description: >- 19 | The private key file to use for SSL. Note that this file must 20 | exist in the /ssl/ folder. 21 | network: 22 | 9541/tcp: Web interface 23 | -------------------------------------------------------------------------------- /tautulli/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🧰 Maintenance 4 | 5 | - 🎆 Updates maintenance/license year to 2025 @frenck ([#394](https://github.com/hassio-addons/addon-tautulli/pull/394)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update ghcr.io/hassio-addons/debian-base Docker tag to v7.6.3 @[renovate[bot]](https://github.com/apps/renovate) ([#386](https://github.com/hassio-addons/addon-tautulli/pull/386)) 10 | - ⬆️ Update setuptools to v75.7.0 @[renovate[bot]](https://github.com/apps/renovate) ([#387](https://github.com/hassio-addons/addon-tautulli/pull/387)) 11 | - ⬆️ Update plexapi to v4.16.1 @[renovate[bot]](https://github.com/apps/renovate) ([#389](https://github.com/hassio-addons/addon-tautulli/pull/389)) 12 | - ⬆️ Update setuptools to v75.8.0 @[renovate[bot]](https://github.com/apps/renovate) ([#388](https://github.com/hassio-addons/addon-tautulli/pull/388)) 13 | - ⬆️ Update ghcr.io/hassio-addons/debian-base Docker tag to v7.7.0 @[renovate[bot]](https://github.com/apps/renovate) ([#390](https://github.com/hassio-addons/addon-tautulli/pull/390)) 14 | - ⬆️ Update debian_12/git to v1:2.39.5-0+deb12u2 @[renovate[bot]](https://github.com/apps/renovate) ([#391](https://github.com/hassio-addons/addon-tautulli/pull/391)) 15 | - ⬆️: migrate renovate config @[renovate[bot]](https://github.com/apps/renovate) ([#393](https://github.com/hassio-addons/addon-tautulli/pull/393)) 16 | - ⬆️ Update ghcr.io/hassio-addons/debian-base Docker tag to v7.7.1 @[renovate[bot]](https://github.com/apps/renovate) ([#392](https://github.com/hassio-addons/addon-tautulli/pull/392)) 17 | -------------------------------------------------------------------------------- /tautulli/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Tautulli 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | Monitoring and tracking tool for Plex Media Server. 8 | 9 | ![Screenshot][screenshot] 10 | 11 | ## About 12 | 13 | Tautulli is an application that you can run alongside your Plex Media Server 14 | to monitor activity, and track various statistics. 15 | 16 | Most importantly, these statistics include what has been watched, 17 | who watched it, when and where they watched it, and how it was watched. 18 | 19 | All statistics are presented in a nice and clean interface with many tables and 20 | graphs, which makes it easy to brag about your server to everyone else. 21 | 22 | ## WARNING! THIS IS A BETA VERSION! 23 | 24 | This Home Assistant Add-ons repository contains beta releases of add-ons. 25 | 26 | - They might stop working at any time. 27 | - They could have a negative impact on your system. 28 | 29 | This repository was created for: 30 | 31 | - Anybody willing to test. 32 | - Anybody interested in trying out upcoming add-ons or add-on features. 33 | 34 | If you are more interested in stable releases of our add-ons: 35 | 36 | 37 | 38 | [discord-shield]: https://img.shields.io/discord/330944238910963714.svg 39 | [discord]: https://discord.gg/c5DvZ4e 40 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 41 | [forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-tautulli/68745 42 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 43 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg 44 | [release-shield]: https://img.shields.io/badge/version-v4.2.1-blue.svg 45 | [release]: https://github.com/hassio-addons/addon-tautulli/tree/v4.2.1 46 | [screenshot]: https://github.com/hassio-addons/addon-tautulli/raw/main/images/screenshot.png -------------------------------------------------------------------------------- /tautulli/config.yaml: -------------------------------------------------------------------------------- 1 | name: Tautulli 2 | version: 4.2.1 3 | slug: tautulli 4 | description: Monitoring and tracking tool for Plex Media Server 5 | url: https://github.com/hassio-addons/addon-tautulli/tree/main/README.md 6 | codenotary: codenotary@frenck.dev 7 | webui: '[PROTO:ssl]://[HOST]:[PORT:8181]' 8 | arch: 9 | - aarch64 10 | - amd64 11 | - armv7 12 | init: false 13 | hassio_api: true 14 | ports: 15 | 8181/tcp: 8181 16 | ports_description: 17 | 8181/tcp: Tautulli web interface 18 | map: 19 | - share:rw 20 | - backup:rw 21 | schema: 22 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 23 | image: ghcr.io/hassio-addons/tautulli/{arch} 24 | -------------------------------------------------------------------------------- /tautulli/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/tautulli/icon.png -------------------------------------------------------------------------------- /tautulli/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/tautulli/logo.png -------------------------------------------------------------------------------- /tautulli/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: >- 6 | Controls the level of log details the add-on provides. 7 | username: 8 | name: Username 9 | description: >- 10 | The username for authenticating with the web interface. 11 | password: 12 | name: Password 13 | description: >- 14 | The password for authenticating with the web interface. 15 | ssl: 16 | name: SSL 17 | description: >- 18 | Enables/Disables SSL (HTTPS) on the web interface. 19 | certfile: 20 | name: Certificate file 21 | description: >- 22 | The certificate file to use for SSL. Note that this file must 23 | exist in the /ssl/ folder. 24 | keyfile: 25 | name: Private key file 26 | description: >- 27 | The private key file to use for SSL. Note that this file must 28 | exist in the /ssl/ folder. 29 | leave_front_door_open: 30 | name: Leave front door open 31 | description: >- 32 | When enabled, this option disables the username/password authentication 33 | on the add-on. It is STRONGLY suggested not to use this option. 34 | USE AT YOUR OWN RISK! 35 | network: 36 | 8181/tcp: Web interface 37 | -------------------------------------------------------------------------------- /thelounge/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🧰 Maintenance 4 | 5 | - 🎆 Updates maintenance/license year to 2025 @frenck ([#206](https://github.com/hassio-addons/addon-thelounge/pull/206)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update alpine_3_19/python3 to v3.11.10-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#199](https://github.com/hassio-addons/addon-thelounge/pull/199)) 10 | - ⬆️ Update alpine_3_19/git to v2.43.5-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#200](https://github.com/hassio-addons/addon-thelounge/pull/200)) 11 | - ⬆️ Update ghcr.io/hassio-addons/base-nodejs Docker tag to v0.2.5 @[renovate[bot]](https://github.com/apps/renovate) ([#202](https://github.com/hassio-addons/addon-thelounge/pull/202)) 12 | - ⬆️ Update alpine_3_19/python3 to v3.11.11-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#203](https://github.com/hassio-addons/addon-thelounge/pull/203)) 13 | - ⬆️ Update alpine_3_19/git to v2.43.6-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#204](https://github.com/hassio-addons/addon-thelounge/pull/204)) 14 | - ⬆️: migrate renovate config @[renovate[bot]](https://github.com/apps/renovate) ([#205](https://github.com/hassio-addons/addon-thelounge/pull/205)) 15 | - Update to Alpine 3.21 (NodeJS 22) @frenck ([#207](https://github.com/hassio-addons/addon-thelounge/pull/207)) 16 | -------------------------------------------------------------------------------- /thelounge/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: The Lounge 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Buy me a coffee][buymeacoffee-shield]][buymeacoffee] 8 | 9 | A self-hosted web IRC client. 10 | 11 | ## About 12 | 13 | A self-hosted web IRC client that uses a modern and sleek interface with 14 | support for theming, push notifications, link previews, file uploads and 15 | more. Fully cross-platform and mobile friendly. 16 | 17 | ![Screenshot][screenshot] 18 | 19 | ## WARNING! THIS IS A BETA VERSION! 20 | 21 | This Home Assistant Add-ons repository contains beta releases of add-ons. 22 | 23 | - They might stop working at any time. 24 | - They could have a negative impact on your system. 25 | 26 | This repository was created for: 27 | 28 | - Anybody willing to test. 29 | - Anybody interested in trying out upcoming add-ons or add-on features. 30 | 31 | If you are more interested in stable releases of our add-ons: 32 | 33 | 34 | 35 | 36 | [buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg 37 | [buymeacoffee]: https://www.buymeacoffee.com/timmo 38 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 39 | [discord]: https://discord.me/hassioaddons 40 | [forest-theme]: https://raw.githubusercontent.com/timmo001/thelounge/master/docs/resources/forest-theme.png 41 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 42 | [forum]: https://community.home-assistant.io/?u=timmo001 43 | [hass]: https://www.home-assistant.io/ 44 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 45 | [midnight-theme]: https://raw.githubusercontent.com/timmo001/thelounge/master/docs/resources/midnight-theme.png 46 | [more-info-light]: https://raw.githubusercontent.com/timmo001/thelounge/master/docs/resources/more-info-light.png 47 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg 48 | [release-shield]: https://img.shields.io/badge/version-v0.20.0-blue.svg 49 | [release]: https://github.com/hassio-addons/addon-thelounge/tree/v0.20.0 50 | [screenshot]: https://raw.githubusercontent.com/hassio-addons/addon-thelounge/master/images/screenshot.png 51 | [thelounge]: https://github.com/timmo001/thelounge -------------------------------------------------------------------------------- /thelounge/config.yaml: -------------------------------------------------------------------------------- 1 | name: The Lounge 2 | version: 0.20.0 3 | slug: thelounge 4 | description: A self-hosted web IRC client 5 | url: https://github.com/hassio-addons/addon-thelounge 6 | codenotary: codenotary@frenck.dev 7 | arch: 8 | - aarch64 9 | - amd64 10 | - armv7 11 | ingress: true 12 | ingress_stream: true 13 | panel_admin: false 14 | init: false 15 | panel_icon: mdi:chat 16 | ports: 17 | 80/tcp: null 18 | ports_description: 19 | 80/tcp: The Lounge Web UI (Not required for Ingress) 20 | map: 21 | - ssl 22 | options: 23 | ssl: true 24 | certfile: fullchain.pem 25 | keyfile: privkey.pem 26 | default_theme: default 27 | themes: 28 | - thelounge-theme-solarized 29 | users: [] 30 | schema: 31 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 32 | ssl: bool 33 | certfile: str 34 | keyfile: str 35 | default_theme: str 36 | themes: 37 | - str 38 | users: 39 | - str 40 | image: ghcr.io/hassio-addons/thelounge/{arch} 41 | -------------------------------------------------------------------------------- /thelounge/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/thelounge/icon.png -------------------------------------------------------------------------------- /thelounge/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/thelounge/logo.png -------------------------------------------------------------------------------- /tor/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🐛 Bug fixes 4 | 5 | - Reinstate openssl dependencies @frenck ([#273](https://github.com/hassio-addons/addon-tor/pull/273)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.3 @[renovate[bot]](https://github.com/apps/renovate) ([#267](https://github.com/hassio-addons/addon-tor/pull/267)) 10 | - ⬆️ Update alpine_3_21/go to v1.23.8-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#268](https://github.com/hassio-addons/addon-tor/pull/268)) 11 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.4 @[renovate[bot]](https://github.com/apps/renovate) ([#269](https://github.com/hassio-addons/addon-tor/pull/269)) 12 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.5 @[renovate[bot]](https://github.com/apps/renovate) ([#270](https://github.com/hassio-addons/addon-tor/pull/270)) 13 | - ⬆️ Upgrades go to 1.23.9-r0 @frenck ([#272](https://github.com/hassio-addons/addon-tor/pull/272)) 14 | -------------------------------------------------------------------------------- /tor/config.yaml: -------------------------------------------------------------------------------- 1 | name: Tor 2 | version: 6.0.3 3 | slug: tor 4 | description: Protect your privacy and access Home Assistant via Tor 5 | url: https://github.com/hassio-addons/addon-tor 6 | codenotary: codenotary@frenck.dev 7 | startup: services 8 | arch: 9 | - aarch64 10 | - amd64 11 | - armv7 12 | init: false 13 | ports: 14 | 9050/tcp: 9050 15 | 9080/tcp: 9080 16 | ports_description: 17 | 9050/tcp: Tor SOCKS proxy port 18 | 9080/tcp: Tor HTTP proxy port 19 | map: 20 | - ssl:rw 21 | options: 22 | socks: false 23 | http_tunnel: false 24 | hidden_services: true 25 | stealth: false 26 | client_names: [] 27 | ports: 28 | - '8123' 29 | - 8123:80 30 | bridges: [] 31 | schema: 32 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 33 | socks: bool 34 | http_tunnel: bool 35 | hidden_services: bool 36 | stealth: bool 37 | client_names: 38 | - match(^[A-Za-z0-9+-_]{1,16}$) 39 | ports: 40 | - match(^(.*:)?(?:[0-9]{1,4}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])?$) 41 | bridges: 42 | - str 43 | image: ghcr.io/hassio-addons/tor/{arch} 44 | -------------------------------------------------------------------------------- /tor/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/tor/icon.png -------------------------------------------------------------------------------- /tor/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/tor/logo.png -------------------------------------------------------------------------------- /tor/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: >- 6 | Controls the level of log details the add-on provides. 7 | socks: 8 | name: SOCKS proxy 9 | description: >- 10 | Enabling this feature allows you to use other applications on your 11 | network to use the Tor network using this add-on as the SOCKS Proxy. 12 | hidden_services: 13 | name: Tor's hidden service 14 | description: >- 15 | Enable Tor's Hidden Service to expose services on the Tor network. 16 | (E.g., accessing your Home Assistant instance over Tor.) 17 | stealth: 18 | name: Stealth mode 19 | description: >- 20 | Requires clients to use an additional encryption key to be able to connect 21 | to the hidden service this add-on exposes to the Tor network. 22 | client_names: 23 | name: Clients 24 | description: >- 25 | Names of client when using stealth mode. The add-on will generate keys 26 | for each of these clients. Valid client names are 1 to 16 characters long 27 | and only use characters in `A-Za-z0-9+-_` (no spaces). 28 | ports: 29 | name: Ports 30 | description: >- 31 | Configures hosts and ports to publish via a Tor Hidden Service. Check 32 | the add-on documentation for the exact format to enter here. 33 | bridges: 34 | name: Bridges 35 | description: >- 36 | Configures bridges to establish a connection with the Tor network. Check the 37 | add-on documentation for the exact format to enter here. 38 | http_tunnel: 39 | name: HTTP proxy 40 | description: >- 41 | Open this port to listen for proxy connections using the HTTP protocol 42 | instead of SOCKS. 43 | network: 44 | 9050/tcp: Tor SOCKS proxy port 45 | 9080/tcp: Tor HTTP proxy port 46 | -------------------------------------------------------------------------------- /traccar/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v15.0.5 @renovate ([#278](https://github.com/hassio-addons/addon-traccar/pull/278)) 6 | - ⬆️ Update alpine_3_19/openjdk11-jre-headless to v11.0.22_p7-r0 @renovate ([#279](https://github.com/hassio-addons/addon-traccar/pull/279)) 7 | - ⬆️ Update alpine_3_19/nss to v3.97-r0 @renovate ([#281](https://github.com/hassio-addons/addon-traccar/pull/281)) 8 | - ⬆️ Update alpine_3_19/mariadb-client to v10.11.6-r0 @renovate ([#282](https://github.com/hassio-addons/addon-traccar/pull/282)) 9 | - ⬆️ Update traccar/traccar to v5.12 @renovate ([#283](https://github.com/hassio-addons/addon-traccar/pull/283)) 10 | - ⬆️ Update alpine_3_19/nginx to v1.24.0-r15 @renovate ([#284](https://github.com/hassio-addons/addon-traccar/pull/284)) 11 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v15.0.6 @renovate ([#285](https://github.com/hassio-addons/addon-traccar/pull/285)) 12 | -------------------------------------------------------------------------------- /traccar/config.yaml: -------------------------------------------------------------------------------- 1 | name: Traccar 2 | version: 0.25.0 3 | slug: traccar 4 | description: Modern GPS Tracking Platform 5 | url: https://github.com/hassio-addons/addon-traccar 6 | webui: '[PROTO:ssl]://[HOST]:[PORT:80]' 7 | codenotary: codenotary@frenck.dev 8 | panel_icon: mdi:car-connected 9 | startup: services 10 | arch: 11 | - aarch64 12 | - amd64 13 | init: false 14 | host_network: true 15 | ports: 16 | 80/tcp: 8082 17 | ports_description: 18 | 80/tcp: Web interface 19 | map: 20 | - addon_config:rw 21 | - homeassistant_config:rw 22 | - ssl 23 | services: 24 | - mysql:want 25 | options: 26 | ssl: false 27 | certfile: fullchain.pem 28 | keyfile: privkey.pem 29 | schema: 30 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 31 | ssl: bool 32 | certfile: str 33 | keyfile: str 34 | image: ghcr.io/hassio-addons/traccar/{arch} 35 | -------------------------------------------------------------------------------- /traccar/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/traccar/icon.png -------------------------------------------------------------------------------- /traccar/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/traccar/logo.png -------------------------------------------------------------------------------- /traccar/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: >- 6 | Controls the level of log details the add-on provides. 7 | ssl: 8 | name: SSL 9 | description: >- 10 | Enables/Disables SSL (HTTPS) on the web interface. 11 | certfile: 12 | name: Certificate file 13 | description: >- 14 | The certificate file to use for SSL. Note that this file must 15 | exist in the /ssl/ folder. 16 | keyfile: 17 | name: Private key file 18 | description: >- 19 | The private key file to use for SSL. Note that this file must 20 | exist in the /ssl/ folder. 21 | network: 22 | 80/tcp: Web interface 23 | -------------------------------------------------------------------------------- /unifi/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Upgrades binutils to 2.34-6ubuntu1.11 @frenck ([#565](https://github.com/hassio-addons/addon-unifi/pull/565)) 6 | - ⬆️ Upgrades libcap2 to 1:2.32-1ubuntu0.2 @frenck ([#566](https://github.com/hassio-addons/addon-unifi/pull/566)) 7 | - ⬆️ Upgrades UniFi Network Application to 9.1.120 @renewoensdregt ([#560](https://github.com/hassio-addons/addon-unifi/pull/560)) 8 | -------------------------------------------------------------------------------- /unifi/config.yaml: -------------------------------------------------------------------------------- 1 | name: UniFi Network Application 2 | version: 4.1.0 3 | slug: unifi 4 | description: Manage your UniFi network using a web browser 5 | url: https://github.com/hassio-addons/addon-unifi 6 | codenotary: codenotary@frenck.dev 7 | webui: https://[HOST]:[PORT:8443] 8 | startup: services 9 | arch: 10 | - aarch64 11 | - amd64 12 | init: false 13 | backup: cold 14 | map: 15 | - backup:rw 16 | ports: 17 | 161/udp: null 18 | 1900/udp: null 19 | 3478/udp: 3478 20 | 5514/udp: 5514 21 | 6789/tcp: 6789 22 | 8080/tcp: 8080 23 | 8443/tcp: 8443 24 | 8843/tcp: 8843 25 | 8880/tcp: 8880 26 | 10001/udp: 10001 27 | ports_description: 28 | 161/udp: Used for SNMP Access 29 | 1900/udp: L2 discoverable port 30 | 3478/udp: Used for STUN 31 | 5514/udp: Used for remote syslog debugging 32 | 6789/tcp: Used for UniFi mobile speed test 33 | 8080/tcp: Used for device and controller communication 34 | 8443/tcp: Used for controller web interface and API 35 | 8843/tcp: Used for HTTPS portal redirection 36 | 8880/tcp: Used for HTTP portal redirection 37 | 10001/udp: Used for device discovery 38 | hassio_api: true 39 | schema: 40 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 41 | memory_max: int? 42 | memory_init: int? 43 | image: ghcr.io/hassio-addons/unifi/{arch} 44 | -------------------------------------------------------------------------------- /unifi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/unifi/icon.png -------------------------------------------------------------------------------- /unifi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/unifi/logo.png -------------------------------------------------------------------------------- /unifi/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: >- 6 | Controls the level of log details the add-on provides. 7 | memory_max: 8 | name: Max Memory 9 | description: >- 10 | This option allows you to change the amount of memory the UniFi Network 11 | Application is allowed to consume. 12 | memory_init: 13 | name: Initial Memory 14 | description: >- 15 | This option allows you to change the amount of memory the UniFi Network 16 | Application will initially reserve/consume when starting. 17 | network: 18 | 161/udp: Used for SNMP Access 19 | 1900/udp: L2 discoverable port 20 | 3478/udp: Used for STUN 21 | 5514/udp: Used for remote syslog debugging 22 | 6789/tcp: Used for UniFi mobile speed test 23 | 8080/tcp: Used for device and controller communication 24 | 8443/tcp: Used for controller web interface and API 25 | 8843/tcp: Used for HTTPS portal redirection 26 | 8880/tcp: Used for HTTP portal redirection 27 | 10001/udp: Used for device discovery 28 | -------------------------------------------------------------------------------- /unifi/translations/fr.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Niveau de journalisation 5 | description: >- 6 | Contrôle le niveau de détails des journaux fournis par l'extension. 7 | memory_max: 8 | name: Mémoire maximale 9 | description: >- 10 | Cette option vous permet de modifier la quantité de mémoire que l'application UniFi Network est autorisée à consommer. 11 | memory_init: 12 | name: Mémoire initiale 13 | description: >- 14 | Cette option vous permet de modifier la quantité de mémoire que l'application UniFi Network réservera/consommera initialement au démarrage. 15 | network: 16 | 161/udp: Utilisé pour l'accès SNMP 17 | 1900/udp: Port découvrable de niveau 2 18 | 3478/udp: Utilisé pour STUN 19 | 5514/udp: Utilisé pour le débogage distant via syslog 20 | 6789/tcp: Utilisé pour le test de vitesse UniFi Mobile 21 | 8080/tcp: Utilisé pour la communication entre appareils et contrôleur 22 | 8443/tcp: Utilisé pour l'interface web et l'API du contrôleur 23 | 8843/tcp: Utilisé pour la redirection de portail HTTPS 24 | 8880/tcp: Utilisé pour la redirection de portail HTTP 25 | 10001/udp: Utilisé pour la découverte d'appareils 26 | -------------------------------------------------------------------------------- /unifi/translations/pl.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: >- 6 | Kontroluje poziom szczegółowości logów, jaki zapewnia dodatek. 7 | memory_max: 8 | name: Max Memory 9 | description: >- 10 | Ta opcja pozwala na zmianę ilości pamięci, którą może używać 11 | aplikacja UniFi Network. 12 | memory_init: 13 | name: Initial Memory 14 | description: >- 15 | Ta opcja pozwala zmienić ilość pamięci, którą aplikacja UniFi 16 | Network będzie rezerwować/używać przy starcie. 17 | network: 18 | 161/udp: Używany dla dostępu po SNMP 19 | 1900/udp: L2 wykrywalny port 20 | 3478/udp: Używany dla STUN 21 | 5514/udp: Używany do zdalnego debugowania syslogu 22 | 6789/tcp: Używany do testu prędkości UniFi mobile 23 | 8080/tcp: Używany do komunikacji urządzeń z kontrolerem 24 | 8443/tcp: Używany do interfejsu webowego kontrolera i API 25 | 8843/tcp: Używany do przekierowania na portal po HTTPS 26 | 8880/tcp: Używany do przekierowania na portal po HTTP 27 | 10001/udp: Używany do wykrywania urządzeń 28 | -------------------------------------------------------------------------------- /unifi/translations/pt-BR.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Detalhes do log 5 | description: >- 6 | Controla o nível de detalhes provido pelo add-on para o log. 7 | memory_max: 8 | name: Memória máxima 9 | description: >- 10 | Esta opção permite que você altere a quantidade máxima de memória 11 | consumida pela UniFi Network Application. 12 | memory_init: 13 | name: Memória inicial 14 | description: >- 15 | Esta opção permite que você altere a quantidade máxima de memória 16 | reservada/consumida na inicialização da UniFi Network Application. 17 | network: 18 | 161/udp: Utilizado para acesso SNMP 19 | 1900/udp: L2 discoverable port 20 | 3478/udp: Utilizado para STUN 21 | 5514/udp: Utilizado para depuração remota do syslog 22 | 6789/tcp: Utilizado para teste de velocidade do app UniFi 23 | 8080/tcp: Utilizado para comunicação do controlador com dispositivos 24 | 8443/tcp: Utilizado para interface web e API do controlador 25 | 8843/tcp: Utilizado para redirecionamento HTTPS do portal 26 | 8880/tcp: Utilizado para redirecionamento HTTP do portal 27 | 10001/udp: Utilizado para descoberta de dispositivos 28 | -------------------------------------------------------------------------------- /uptime-kuma/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Uptime Kuma 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] 8 | 9 | [![Support Frenck on Patreon][patreon-shield]][patreon] 10 | 11 | It is a self-hosted monitoring tool like "Uptime Robot". 12 | 13 | ## About 14 | 15 | Uptime Kuma is an open source monitor tools, which can be best 16 | compared to a self-hosted variant of a commercial service like "Uptime Robot". 17 | 18 | It enables you to monitor services over HTTP/S, TCP, DNS, and other protocols 19 | and it can send you notifications of downtime or trigger an Home Assistant 20 | automation webhook. 21 | 22 | ## WARNING! THIS IS A BETA VERSION! 23 | 24 | This Home Assistant Add-ons repository contains beta releases of add-ons. 25 | 26 | - They might stop working at any time. 27 | - They could have a negative impact on your system. 28 | 29 | This repository was created for: 30 | 31 | - Anybody willing to test. 32 | - Anybody interested in trying out upcoming add-ons or add-on features. 33 | 34 | If you are more interested in stable releases of our add-ons: 35 | 36 | 37 | 38 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 39 | [discord]: https://discord.me/hassioaddons 40 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 41 | [forum]: https://community.home-assistant.io/? 42 | [github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png 43 | [github-sponsors]: https://github.com/sponsors/frenck 44 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 45 | [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png 46 | [patreon]: https://www.patreon.com/frenck 47 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg 48 | [release-shield]: https://img.shields.io/badge/version-v0.13.0-blue.svg 49 | [release]: https://github.com/hassio-addons/addon-uptime-kuma/tree/v0.13.0 -------------------------------------------------------------------------------- /uptime-kuma/config.yaml: -------------------------------------------------------------------------------- 1 | name: Uptime Kuma 2 | version: 0.13.0 3 | slug: uptime-kuma 4 | description: It is a self-hosted monitoring tool like "Uptime Robot" 5 | url: https://github.com/hassio-addons/addon-uptime-kuma 6 | codenotary: codenotary@frenck.dev 7 | webui: http://[HOST]:[PORT:3001] 8 | init: false 9 | arch: 10 | - aarch64 11 | - amd64 12 | - armv7 13 | ports: 14 | 3001/tcp: 3001 15 | ports_description: 16 | 3001/tcp: Web interface 17 | image: ghcr.io/hassio-addons/uptime-kuma/{arch} 18 | -------------------------------------------------------------------------------- /uptime-kuma/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/uptime-kuma/icon.png -------------------------------------------------------------------------------- /uptime-kuma/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/uptime-kuma/logo.png -------------------------------------------------------------------------------- /vscode/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update esphome to v2025.4.1 @[renovate[bot]](https://github.com/apps/renovate) ([#961](https://github.com/hassio-addons/addon-vscode/pull/961)) 6 | - ⬆️ Update cdr/code-server to v4.99.4 @[renovate[bot]](https://github.com/apps/renovate) ([#963](https://github.com/hassio-addons/addon-vscode/pull/963)) 7 | - ⬆️ Update yamllint to v1.37.1 @[renovate[bot]](https://github.com/apps/renovate) ([#964](https://github.com/hassio-addons/addon-vscode/pull/964)) 8 | -------------------------------------------------------------------------------- /vscode/config.yaml: -------------------------------------------------------------------------------- 1 | name: Studio Code Server 2 | version: 5.19.3 3 | slug: vscode 4 | description: Fully featured Visual Studio Code (VSCode) experience integrated in the 5 | Home Assistant frontend. 6 | url: https://github.com/hassio-addons/addon-vscode 7 | codenotary: codenotary@frenck.dev 8 | ingress: true 9 | ingress_port: 1337 10 | ingress_stream: true 11 | panel_icon: mdi:microsoft-visual-studio-code 12 | startup: services 13 | init: false 14 | arch: 15 | - aarch64 16 | - amd64 17 | uart: true 18 | hassio_api: true 19 | hassio_role: manager 20 | homeassistant_api: true 21 | map: 22 | - type: addons 23 | read_only: false 24 | - type: all_addon_configs 25 | read_only: false 26 | - type: backup 27 | read_only: false 28 | - type: homeassistant_config 29 | read_only: false 30 | path: /config 31 | - type: media 32 | read_only: false 33 | - type: share 34 | read_only: false 35 | - type: ssl 36 | read_only: false 37 | services: 38 | - mysql:want 39 | - mqtt:want 40 | options: 41 | packages: [] 42 | init_commands: [] 43 | schema: 44 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 45 | config_path: str? 46 | packages: 47 | - str 48 | init_commands: 49 | - str 50 | image: ghcr.io/hassio-addons/vscode/{arch} 51 | -------------------------------------------------------------------------------- /vscode/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/vscode/icon.png -------------------------------------------------------------------------------- /vscode/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/vscode/logo.png -------------------------------------------------------------------------------- /whisparr/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update alpine_3_21/sqlite-libs to v3.48.0-r1 @[renovate[bot]](https://github.com/apps/renovate) ([#39](https://github.com/hassio-addons/addon-whisparr/pull/39)) 6 | - ⬆️ Update alpine_3_21/sqlite-libs to v3.48.0-r2 @[renovate[bot]](https://github.com/apps/renovate) ([#40](https://github.com/hassio-addons/addon-whisparr/pull/40)) 7 | - ⬆️ Upgrades Whisparr to 2.0.0.987 @frenck ([#41](https://github.com/hassio-addons/addon-whisparr/pull/41)) 8 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.5 @[renovate[bot]](https://github.com/apps/renovate) ([#38](https://github.com/hassio-addons/addon-whisparr/pull/38)) 9 | -------------------------------------------------------------------------------- /whisparr/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: Whisparr 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | Whisparr is an adult video collection manager for Usenet and BitTorrent users. 8 | 9 | ## About 10 | 11 | [Whisparr] is an adult movie collection manager for Usenet and BitTorrent users. 12 | It can monitor multiple RSS feeds for new movies and will interface with clients 13 | and indexers to grab, sort, and rename them. It can also be configured to 14 | automatically upgrade the quality of existing files in the library when a 15 | better quality format becomes available. 16 | 17 | [Whisparr]: https://github.com/whisparr/whisparr 18 | 19 | ## WARNING! THIS IS A BETA VERSION! 20 | 21 | This Home Assistant Add-ons repository contains beta releases of add-ons. 22 | 23 | - They might stop working at any time. 24 | - They could have a negative impact on your system. 25 | 26 | This repository was created for: 27 | 28 | - Anybody willing to test. 29 | - Anybody interested in trying out upcoming add-ons or add-on features. 30 | 31 | If you are more interested in stable releases of our add-ons: 32 | 33 | 34 | 35 | [discord-shield]: https://img.shields.io/discord/330944238910963714.svg 36 | [discord]: https://discord.gg/c5DvZ4e 37 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 38 | [forum]: https://community.home-assistant.io/t/?u=frenck 39 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 40 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 41 | [release-shield]: https://img.shields.io/badge/version-v0.3.2-blue.svg 42 | [release]: https://github.com/hassio-addons/addon-whisparr/tree/v0.3.2 -------------------------------------------------------------------------------- /whisparr/config.yaml: -------------------------------------------------------------------------------- 1 | name: Whisparr 2 | version: 0.3.2 3 | slug: whisparr 4 | description: Whisparr is an adult video collection manager for Usenet and BitTorrent 5 | users 6 | url: https://github.com/hassio-addons/addon-whisparr/tree/main/README.md 7 | codenotary: codenotary@frenck.dev 8 | webui: http://[HOST]:[PORT:6969] 9 | init: false 10 | arch: 11 | - aarch64 12 | - amd64 13 | - armv7 14 | map: 15 | - addon_config:rw 16 | - share:rw 17 | - media:rw 18 | ports: 19 | 6969/tcp: 6969 20 | image: ghcr.io/hassio-addons/whisparr/{arch} 21 | -------------------------------------------------------------------------------- /whisparr/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/whisparr/icon.png -------------------------------------------------------------------------------- /whisparr/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/whisparr/logo.png -------------------------------------------------------------------------------- /wireguard/config.yaml: -------------------------------------------------------------------------------- 1 | name: WireGuard 2 | version: 0.11.0 3 | slug: wireguard 4 | description: Fast, modern, secure VPN tunnel 5 | url: https://github.com/hassio-addons/addon-wireguard 6 | codenotary: codenotary@frenck.dev 7 | arch: 8 | - aarch64 9 | - amd64 10 | - armv7 11 | init: false 12 | ports: 13 | 80/tcp: null 14 | 51820/udp: 51820 15 | ports_description: 16 | 80/tcp: WireGuard peers status API 17 | 51820/udp: 'WireGuard: forward this port in your router' 18 | hassio_api: true 19 | privileged: 20 | - NET_ADMIN 21 | devices: 22 | - /dev/net/tun 23 | map: 24 | - ssl:rw 25 | options: 26 | server: 27 | host: myautomatedhome.duckdns.org 28 | addresses: 29 | - 172.27.66.1 30 | dns: [] 31 | peers: 32 | - name: hassio 33 | addresses: 34 | - 172.27.66.2 35 | allowed_ips: [] 36 | client_allowed_ips: [] 37 | schema: 38 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 39 | server: 40 | host: str 41 | interface: match(^wg([0-9])+$)? 42 | addresses: 43 | - str 44 | dns: 45 | - str 46 | private_key: password? 47 | public_key: str? 48 | fwmark: str? 49 | table: str? 50 | pre_up: str? 51 | pre_down: str? 52 | post_up: str? 53 | post_down: str? 54 | mtu: int? 55 | peers: 56 | - name: match(^[a-zA-Z0-9\d](?:[a-zA-Z0-9\d]|-(?=[a-zA-Z0-9\d])){0,32}$) 57 | private_key: str? 58 | public_key: str? 59 | addresses: 60 | - str 61 | allowed_ips: 62 | - str 63 | client_allowed_ips: 64 | - str 65 | persistent_keep_alive: int? 66 | endpoint: str? 67 | pre_shared_key: str? 68 | fwmark: str? 69 | image: ghcr.io/hassio-addons/wireguard/{arch} 70 | -------------------------------------------------------------------------------- /wireguard/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/wireguard/icon.png -------------------------------------------------------------------------------- /wireguard/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/wireguard/logo.png -------------------------------------------------------------------------------- /zerotier/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## 🧰 Maintenance 4 | 5 | - 🎆 Updates maintenance/license year to 2025 @frenck ([#265](https://github.com/hassio-addons/addon-zerotier/pull/265)) 6 | 7 | ## ⬆️ Dependency updates 8 | 9 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.0.1 @[renovate[bot]](https://github.com/apps/renovate) ([#253](https://github.com/hassio-addons/addon-zerotier/pull/253)) 10 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.0.2 @[renovate[bot]](https://github.com/apps/renovate) ([#255](https://github.com/hassio-addons/addon-zerotier/pull/255)) 11 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.0 @[renovate[bot]](https://github.com/apps/renovate) ([#256](https://github.com/hassio-addons/addon-zerotier/pull/256)) 12 | - ⬆️ Update alpine_3_21/git to v2.47.2-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#257](https://github.com/hassio-addons/addon-zerotier/pull/257)) 13 | - ⬆️ Update alpine_3_21/openssl-dev to v3.3.2-r5 @[renovate[bot]](https://github.com/apps/renovate) ([#259](https://github.com/hassio-addons/addon-zerotier/pull/259)) 14 | - ⬆️ Update alpine_3_21/openssl-dev to v3.3.2-r6 @[renovate[bot]](https://github.com/apps/renovate) ([#260](https://github.com/hassio-addons/addon-zerotier/pull/260)) 15 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.3 @[renovate[bot]](https://github.com/apps/renovate) ([#258](https://github.com/hassio-addons/addon-zerotier/pull/258)) 16 | - ⬆️ Update alpine_3_21/openssl-dev to v3.3.3-r0 @[renovate[bot]](https://github.com/apps/renovate) ([#261](https://github.com/hassio-addons/addon-zerotier/pull/261)) 17 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.1.4 @[renovate[bot]](https://github.com/apps/renovate) ([#262](https://github.com/hassio-addons/addon-zerotier/pull/262)) 18 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.0 @[renovate[bot]](https://github.com/apps/renovate) ([#263](https://github.com/hassio-addons/addon-zerotier/pull/263)) 19 | - ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17.2.1 @[renovate[bot]](https://github.com/apps/renovate) ([#264](https://github.com/hassio-addons/addon-zerotier/pull/264)) 20 | -------------------------------------------------------------------------------- /zerotier/README.md: -------------------------------------------------------------------------------- 1 | # Home Assistant Community Add-on: ZeroTier One 2 | 3 | [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] 4 | 5 | [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] 6 | 7 | [![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] 8 | 9 | [![Support Frenck on Patreon][patreon-shield]][patreon] 10 | 11 | Radically simplify your network with a virtual networking layer that works 12 | the same everywhere. 13 | 14 | ## About 15 | 16 | ZeroTier delivers the capabilities of VPNs, SDN, and SD-WAN with a single 17 | system. Manage all your connected resources across both local and wide area 18 | networks as if the whole world is a single data center. 19 | 20 | People use ZeroTier to seamlessly connect laptops, desktops, phones, 21 | embedded devices, cloud resources, and apps any way they want anywhere they go. 22 | It transforms the entire world into a single data center, to which you 23 | can now add your Home Assistant instance using this add-on. 24 | 25 | ## WARNING! THIS IS A BETA VERSION! 26 | 27 | This Home Assistant Add-ons repository contains beta releases of add-ons. 28 | 29 | - They might stop working at any time. 30 | - They could have a negative impact on your system. 31 | 32 | This repository was created for: 33 | 34 | - Anybody willing to test. 35 | - Anybody interested in trying out upcoming add-ons or add-on features. 36 | 37 | If you are more interested in stable releases of our add-ons: 38 | 39 | 40 | 41 | [discord-shield]: https://img.shields.io/discord/478094546522079232.svg 42 | [discord]: https://discord.me/hassioaddons 43 | [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg 44 | [forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-zerotier-one/109091?u=frenck 45 | [github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png 46 | [github-sponsors]: https://github.com/sponsors/frenck 47 | [maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg 48 | [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png 49 | [patreon]: https://www.patreon.com/frenck 50 | [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg 51 | [release-shield]: https://img.shields.io/badge/version-v0.20.0-blue.svg 52 | [release]: https://github.com/hassio-addons/addon-zerotier/tree/v0.20.0 -------------------------------------------------------------------------------- /zerotier/config.yaml: -------------------------------------------------------------------------------- 1 | name: ZeroTier One 2 | version: 0.20.0 3 | slug: zerotier 4 | description: Radically simplify your network with a virtual networking layer that 5 | works the same everywhere 6 | url: https://github.com/hassio-addons/addon-zerotier 7 | codenotary: codenotary@frenck.dev 8 | startup: services 9 | init: false 10 | arch: 11 | - aarch64 12 | - amd64 13 | - armv7 14 | ports: 15 | 9993/tcp: 9993 16 | ports_description: 17 | 9993/tcp: ZeroTier's primary port 18 | host_network: true 19 | privileged: 20 | - NET_ADMIN 21 | - SYS_ADMIN 22 | devices: 23 | - /dev/net/tun 24 | map: 25 | - ssl:rw 26 | options: 27 | networks: [] 28 | api_auth_token: '' 29 | schema: 30 | networks: 31 | - match(^!secret [a-zA-Z0-9_\-]+$|[0-9a-z]{16}) 32 | api_auth_token: str 33 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 34 | image: ghcr.io/hassio-addons/zerotier/{arch} 35 | -------------------------------------------------------------------------------- /zerotier/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/zerotier/icon.png -------------------------------------------------------------------------------- /zerotier/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/zerotier/logo.png -------------------------------------------------------------------------------- /zwave-js-ui/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## What’s changed 2 | 3 | ## ⬆️ Dependency updates 4 | 5 | - ⬆️ Update zwave-js/zwave-js-ui to v10.5.1 @[renovate[bot]](https://github.com/apps/renovate) ([#790](https://github.com/hassio-addons/addon-zwave-js-ui/pull/790)) 6 | -------------------------------------------------------------------------------- /zwave-js-ui/config.yaml: -------------------------------------------------------------------------------- 1 | name: Z-Wave JS UI 2 | version: 4.3.1 3 | slug: zwavejs2mqtt 4 | description: Fully configurable Z-Wave JS gateway and control panel 5 | url: https://github.com/hassio-addons/addon-zwave-js-ui 6 | codenotary: codenotary@frenck.dev 7 | ingress: true 8 | ingress_stream: true 9 | panel_title: Z-Wave JS 10 | panel_icon: mdi:z-wave 11 | startup: system 12 | init: false 13 | timeout: 30 14 | arch: 15 | - aarch64 16 | - amd64 17 | - armv7 18 | discovery: 19 | - zwave_js 20 | services: 21 | - mqtt:want 22 | uart: true 23 | udev: true 24 | map: 25 | - share:rw 26 | schema: 27 | log_level: list(trace|debug|info|notice|warning|error|fatal)? 28 | ports: 29 | 3000/tcp: null 30 | ports_description: 31 | 3000/tcp: Z-Wave JS communication 32 | image: ghcr.io/hassio-addons/zwave-js-ui/{arch} 33 | -------------------------------------------------------------------------------- /zwave-js-ui/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/zwave-js-ui/icon.png -------------------------------------------------------------------------------- /zwave-js-ui/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassio-addons/repository-beta/c95d5c0513a9585542d1a6fc9ccbcaae8bedc1ac/zwave-js-ui/logo.png -------------------------------------------------------------------------------- /zwave-js-ui/translations/en.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | configuration: 3 | log_level: 4 | name: Log level 5 | description: >- 6 | Controls the level of log details the add-on provides. 7 | network: 8 | 3000/tcp: Z-Wave JS server port 9 | --------------------------------------------------------------------------------