mirror of
https://github.com/mtan93/homeassistant-addons.git
synced 2026-04-13 06:13:10 +01:00
Update eufy-ha-mqtt-bridge==0.2.0
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.8.0] - 2021-01-10
|
||||||
|
- Switch from `main` branch to releases from `eufy-ha-mqtt-bridge`
|
||||||
|
- Update `eufy-ha-mqtt-bridge` to `0.2.0` [Changelog](https://github.com/matijse/eufy-ha-mqtt-bridge/releases)
|
||||||
|
|
||||||
## [0.7.0] - 2021-01-05
|
## [0.7.0] - 2021-01-05
|
||||||
- Moved to dockerhub located images
|
- Moved to dockerhub located images
|
||||||
- Updated logo
|
- Updated logo
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
# sneaky trick to get around the requirement of {arch}-variabe based docker repositories
|
# sneaky trick to get around the requirement of {arch}-variabe based docker repositories
|
||||||
|
|
||||||
FROM maxwinterstein/homeassistant-addon-eufy-ha-mqtt-bridge:latest
|
FROM maxwinterstein/homeassistant-addon-eufy-ha-mqtt-bridge:latest
|
||||||
|
|
||||||
|
|||||||
@@ -1,20 +1,18 @@
|
|||||||
FROM hassioaddons/debian-base
|
FROM hassioaddons/debian-base
|
||||||
ENV LANG C.UTF-8
|
ENV LANG C.UTF-8
|
||||||
|
|
||||||
|
ARG VERSION=0.2.0
|
||||||
|
|
||||||
# install node and build tools (needed by node-pre-gy)
|
# install node and build tools (needed by node-pre-gy)
|
||||||
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt install -y nodejs g++ make python
|
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt install -y nodejs g++ make python
|
||||||
|
|
||||||
# Calls for a random number to bust the cache
|
|
||||||
# (https://stackoverflow.com/questions/35134713/disable-cache-for-specific-run-commands/58801213#58801213)
|
|
||||||
ADD "https://www.random.org/cgi-bin/randbyte?nbytes=10&format=h" skipcache
|
|
||||||
|
|
||||||
# add source and unpack
|
# add source and unpack
|
||||||
ADD "https://github.com/matijse/eufy-ha-mqtt-bridge/tarball/main" /src.tar.gz
|
ADD "https://github.com/matijse/eufy-ha-mqtt-bridge/archive/${VERSION}.tar.gz" /src.tar.gz
|
||||||
RUN mkdir /app && tar xvfz /src.tar.gz -C /app --strip-components=1
|
RUN mkdir /app && tar xvfz /src.tar.gz -C /app --strip-components=1
|
||||||
|
|
||||||
# install all (and json2yaml for cofiguration parsing)
|
# install all (and json2yaml for cofiguration parsing)
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
RUN npm install && npm install -g json2yaml
|
RUN npm install && npm install -g json2yaml && echo ${VERSION} > /version
|
||||||
|
|
||||||
COPY run.sh /
|
COPY run.sh /
|
||||||
RUN chmod a+x /run.sh
|
RUN chmod a+x /run.sh
|
||||||
|
|||||||
@@ -5,15 +5,10 @@
|
|||||||
## 🚨 This is some experimental release! 🚨
|
## 🚨 This is some experimental release! 🚨
|
||||||
---
|
---
|
||||||
|
|
||||||
**The underlaying docker image will be build every night until there is some kind of versioning available.**
|
|
||||||
**If a feature was released at eufy-ha-mqtt-bridge, it might be available as recently as the next day.**
|
|
||||||
|
|
||||||
Quick wrapp around https://github.com/matijse/eufy-ha-mqtt-bridge.
|
Quick wrapp around https://github.com/matijse/eufy-ha-mqtt-bridge.
|
||||||
|
|
||||||
Application data will be written to `/share/eufy-ha-mqtt-bridge/` so log and other files can be accessed from other addons, e.g. the `Samba share` addon, or view it at the `Visual Studio Code` add-on.
|
Application data will be written to `/share/eufy-ha-mqtt-bridge/` so log and other files can be accessed from other addons, e.g. the `Samba share` addon, or view it at the `Visual Studio Code` add-on.
|
||||||
|
|
||||||
As there is currently no real versioning you might want to hit the `REBUILD` button from time to time, to ensure you got the latest version.
|
|
||||||
|
|
||||||
🚨 This also contains some plaintext configuration file with login credentials, so take care who can access your files! 🚨
|
🚨 This also contains some plaintext configuration file with login credentials, so take care who can access your files! 🚨
|
||||||
|
|
||||||
## ♥
|
## ♥
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Eufy Home Assistant MQTT Bridge",
|
"name": "Eufy Home Assistant MQTT Bridge",
|
||||||
"version": "0.7.0",
|
"version": "1.0.0",
|
||||||
"slug": "eufy-ha-mqtt-bridge",
|
"slug": "eufy-ha-mqtt-bridge",
|
||||||
"description": "Publish events as MQTT messages",
|
"description": "Publish events as MQTT messages",
|
||||||
"arch": [
|
"arch": [
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ echo '# Generated by homeassistant, do not edit!' > /app/data/config.yml
|
|||||||
echo '# Edit configuration only at the Add-on configuration tab!' >> /app/data/config.yml
|
echo '# Edit configuration only at the Add-on configuration tab!' >> /app/data/config.yml
|
||||||
json2yml /data/options.json >> /app/data/config.yml
|
json2yml /data/options.json >> /app/data/config.yml
|
||||||
|
|
||||||
bashio::log.info "Build with sources downloaded on: $(stat -c %z /src.tar.gz)"
|
bashio::log.info "Image build with version $(cat /version)"
|
||||||
|
|
||||||
bashio::log.info "starting original stuff..."
|
bashio::log.info "starting original stuff..."
|
||||||
npm run start
|
npm run start
|
||||||
Reference in New Issue
Block a user