diff --git a/ombi/README.md b/ombi/README.md index df6b4e1de..da6d9c8c9 100644 --- a/ombi/README.md +++ b/ombi/README.md @@ -1,6 +1,6 @@ # Home assistant add-on: Ombi + ![Supports aarch64 Architecture][aarch64-shield] ![Supports amd64 Architecture][amd64-shield] ![Supports armhf Architecture][armhf-shield] ![Supports armv7 Architecture][armv7-shield] -![Supports smb mounts][smb-shield] ![Supports openvpn][openvpn-shield] ![Supports ingress][ingress-shield] ![Supports ssl][ssl-shield] ## About @@ -20,6 +20,7 @@ comparison to installing any other Hass.io add-on. 1. Carefully configure the add-on to your preferences, see the official documentation for for that. ## Configuration + Webui can be found at . ```yaml @@ -28,6 +29,7 @@ GPID: user ``` ## Support + Create an issue on github [repository]: https://github.com/alexbelgium/hassio-addons diff --git a/xteve/CHANGELOG.md b/xteve/CHANGELOG.md new file mode 100644 index 000000000..66f7e8b76 --- /dev/null +++ b/xteve/CHANGELOG.md @@ -0,0 +1 @@ +- Initial release diff --git a/xteve/Dockerfile b/xteve/Dockerfile new file mode 100644 index 000000000..e81167749 --- /dev/null +++ b/xteve/Dockerfile @@ -0,0 +1,37 @@ +ARG BUILD_FROM +ARG BUILD_VERSION +ARG BUILD_UPSTREAM="3.1.133" +FROM tnwhitwell/xteve:latest + +VOLUME [ "/config" ] + +RUN mkdir -p "/config/xteve" + +CMD [ "-config", "/config/xteve" ] + +### LABELS +ARG BUILD_ARCH +ARG BUILD_DATE +ARG BUILD_DESCRIPTION +ARG BUILD_NAME +ARG BUILD_REF +ARG BUILD_REPOSITORY +ARG BUILD_VERSION +LABEL \ + io.hass.name="${BUILD_NAME}" \ + io.hass.description="${BUILD_DESCRIPTION}" \ + io.hass.arch="${BUILD_ARCH}" \ + io.hass.type="addon" \ + io.hass.version=${BUILD_VERSION} \ + maintainer="alexbelgium (https://github.com/alexbelgium)" \ + org.opencontainers.image.title="${BUILD_NAME}" \ + org.opencontainers.image.description="${BUILD_DESCRIPTION}" \ + org.opencontainers.image.vendor="Home Assistant Add-ons" \ + org.opencontainers.image.authors="alexbelgium (https://github.com/alexbelgium)" \ + org.opencontainers.image.licenses="MIT" \ + org.opencontainers.image.url="https://github.com/alexbelgium" \ + org.opencontainers.image.source="https://github.com/${BUILD_REPOSITORY}" \ + org.opencontainers.image.documentation="https://github.com/${BUILD_REPOSITORY}/blob/main/README.md" \ + org.opencontainers.image.created=${BUILD_DATE} \ + org.opencontainers.image.revision=${BUILD_REF} \ + org.opencontainers.image.version=${BUILD_VERSION} diff --git a/xteve/README.md b/xteve/README.md new file mode 100644 index 000000000..3cd326eae --- /dev/null +++ b/xteve/README.md @@ -0,0 +1,39 @@ +# Home assistant add-on: Xteve + +![Supports aarch64 Architecture][aarch64-shield] ![Supports amd64 Architecture][amd64-shield] ![Supports armhf Architecture][armhf-shield] ![Supports armv7 Architecture][armv7-shield] + +## About + +M3U Proxy for Plex DVR and Emby Live TV. +Project homepage : https://github.com/xteve-project/xTeVe +Based on the docker image : https://hub.docker.com/r/tnwhitwell/xteve + +## Installation + +The installation of this add-on is pretty straightforward and not different in +comparison to installing any other Hass.io add-on. + +1. [Add my Hass.io add-ons repository][repository] to your Hass.io instance. +1. Install this add-on. +1. Click the `Save` button to store your configuration. +1. Start the add-on. +1. Check the logs of the add-on to see if everything went well. +1. Carefully configure the add-on to your preferences, see the official documentation for for that. + +## Configuration + +Webui can be found at . + +## Support + +Create an issue on github + +[repository]: https://github.com/alexbelgium/hassio-addons +[smb-shield]: https://img.shields.io/badge/smb-yes-green.svg +[openvpn-shield]: https://img.shields.io/badge/openvpn-yes-green.svg +[ingress-shield]: https://img.shields.io/badge/ingress-yes-green.svg +[ssl-shield]: https://img.shields.io/badge/ssl-yes-green.svg +[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg +[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg +[armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg +[armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg diff --git a/xteve/config.json b/xteve/config.json new file mode 100644 index 000000000..0729c2495 --- /dev/null +++ b/xteve/config.json @@ -0,0 +1,20 @@ +{ + "name": "Xteve", + "version": "2.1.2.0120-alpine3.12.3", + "upstream": "2.1.2.0120-alpine3.12.3", + "slug": "xteve", + "description": "M3U Proxy for Plex DVR and Emby Live TV.", + "url": "https://github.com/alexbelgium/hassio-addons", + "webui": "http://[HOST]:[PORT:34400]", + "ports": { + "34400/tcp": 34400 + }, + "ports_description": { + "34400/tcp": "Web interface" + }, + "map": ["config:rw"], + "environment": {}, + "options": {}, + "schema": {}, + "arch": ["aarch64", "amd64", "armhf", "armv7"] +} diff --git a/xteve/icon.png b/xteve/icon.png new file mode 100644 index 000000000..eb1e8d2b3 Binary files /dev/null and b/xteve/icon.png differ diff --git a/xteve/logo.png b/xteve/logo.png new file mode 100644 index 000000000..eb1e8d2b3 Binary files /dev/null and b/xteve/logo.png differ