diff --git a/README.md b/README.md index 5ad3c4e..3a48cf9 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ Run ioBroker as Add-on. Small proxy to add OctoPrint to the Home Assistant. ## Installation + [![Add repository on my Home Assistant][repository-badge]][repository-url] If you want to do add the repository manually, please follow the procedure highlighted in the [Home Assistant website](https://home-assistant.io/hassio/installing_third_party_addons). Use the following URL to add this repository: `https://github.com/MaxWinterstein/homeassistant-addons/` @@ -52,4 +53,4 @@ See https://community.home-assistant.io/t/portainer-v2-6-2-unable-to-start-conta Forwards Eufy Security push notifications to Home Assistant via MQTT. [repository-badge]: https://img.shields.io/badge/Add%20repository%20to%20my-Home%20Assistant-41BDF5?logo=home-assistant&style=for-the-badge -[repository-url]: https://my.home-assistant.io/redirect/supervisor_add_addon_repository/?repository_url=https%3A%2F%2Fgithub.com%2FMaxWinterstein%2Fhomeassistant-addons \ No newline at end of file +[repository-url]: https://my.home-assistant.io/redirect/supervisor_add_addon_repository/?repository_url=https%3A%2F%2Fgithub.com%2FMaxWinterstein%2Fhomeassistant-addons diff --git a/octoprint-proxy/CHANGELOG.md b/octoprint-proxy/CHANGELOG.md index 8b49535..9d65124 100644 --- a/octoprint-proxy/CHANGELOG.md +++ b/octoprint-proxy/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.0.2] - 2022-12-16 + +- Change to prebuild images + +## [1.0.1] - 2022-12-16 + +- Fix pid issue - thanks @0nikola1 + ## [1.0.0] - 2021-01-03 - Initial release diff --git a/octoprint-proxy/build.json b/octoprint-proxy/build.json new file mode 100644 index 0000000..161861b --- /dev/null +++ b/octoprint-proxy/build.json @@ -0,0 +1,7 @@ +{ + "build_from": { + "armv7": "ghcr.io/hassio-addons/base:13.0.0", + "aarch64": "ghcr.io/hassio-addons/base:13.0.0", + "amd64": "ghcr.io/hassio-addons/base:13.0.0" + } +} diff --git a/octoprint-proxy/config.yaml b/octoprint-proxy/config.yaml index df69cf6..970898d 100644 --- a/octoprint-proxy/config.yaml +++ b/octoprint-proxy/config.yaml @@ -1,24 +1,21 @@ name: OctoPrint Proxy -version: 1.0.1 +version: 1.0.2 slug: octoprint_proxy description: Access OctoPrint from within Home Assistant url: https://github.com/MaxWinterstein/homeassistant-addons/ +image: ghcr.io/maxwinterstein/homeassistant-addon-octoprint-proxy-{arch} ingress: true ingress_port: 80 panel_title: OctoPrint panel_icon: mdi:printer-3d-nozzle arch: -- armhf -- armv7 -- aarch64 -- amd64 -- i386 -startup: application -boot: auto + - armv7 + - aarch64 + - amd64 init: false options: octoprint_host: octopi - octoprint_port: '443' + octoprint_port: "443" ssl: enabled: true verify: false @@ -28,4 +25,3 @@ schema: ssl: enabled: bool verify: bool -hassio_api: false