[adsb-multi-portal-feeder] Add adsb-hassio-sensors

This commit is contained in:
Max Winterstein
2023-06-24 13:35:01 +02:00
parent 7383f294e6
commit b0d230f197
5 changed files with 26 additions and 3 deletions
+12 -3
View File
@@ -1,8 +1,10 @@
ARG BUILD_FROM
FROM $BUILD_FROM
ENV TZ=UTC
# add bashio (thx https://github.com/hassio-addons/addon-debian-base/blob/main/base/Dockerfile#L47)
ADD https://github.com/hassio-addons/bashio/archive/v0.14.3.tar.gz /tmp/bashio.tar.gz
ADD https://github.com/hassio-addons/bashio/archive/v0.15.0.tar.gz /tmp/bashio.tar.gz
RUN apt-get update && apt-get install -y curl jq && mkdir /tmp/bashio \
&& tar zxvf \
/tmp/bashio.tar.gz \
@@ -11,13 +13,18 @@ RUN apt-get update && apt-get install -y curl jq && mkdir /tmp/bashio \
&& mv /tmp/bashio/lib /usr/lib/bashio \
&& ln -s /usr/lib/bashio/bashio /usr/bin/bashio
# Add hassio sensors - thx to https://github.com/plo53
ARG version=1.0.1
ARG sha256sum=40636f3dae484a82485f7c08cbc1f4a413e2ccf3c8b7c3a1e67651974645067d
ADD https://github.com/plo53/adsb-hassio-sensors/archive/refs/tags/${version}.tar.gz /tmp/
RUN echo "${sha256sum} /tmp/${version}.tar.gz" | sha256sum --check
RUN tar xvfz /tmp/${version}.tar.gz adsb-hassio-sensors-${version}/{etc,usr} --strip-components=1 -C /
# add the options.json to environment variable magic
COPY export-env-from-config.sh /export-env-from-config.sh
RUN find /etc/s6-overlay/s6-rc.d/ -name script | xargs sed -i '1 a\source /export-env-from-config.sh'
RUN find /etc/s6-overlay/s6-rc.d/ -name run | xargs sed -i '1 a\source /export-env-from-config.sh'
ENV TZ=UTC
# Add the nice banner
@@ -30,5 +37,7 @@ RUN mkdir -p /etc/s6-overlay/s6-rc.d/banner && \
chmod +x /etc/s6-overlay/s6-rc.d/banner/script && \
sed -i '1 s/^.*$/#!\/command\/with-contenv bashio/' /etc/s6-overlay/s6-rc.d/banner/script
# enhance timeout, as sometimes the api calls are slow (rate limited?)
ENV S6_CMD_WAIT_FOR_SERVICES_MAXTIME=30000