Update to THOM-X/fr24Feed-Piaware 1.10.1 with ADSBEXCHANGE Support

This commit is contained in:
Delta1977
2022-03-18 12:47:35 +01:00
committed by Max Winterstein
parent af70c3eb11
commit 7a77832eae
2 changed files with 31 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
FROM thomx/fr24feed-piaware:1.8.5
FROM thomx/fr24feed-piaware:1.10.1
# 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.13.0.tar.gz /tmp/bashio.tar.gz
ADD https://github.com/hassio-addons/bashio/archive/v0.14.3.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 \
@@ -13,10 +13,19 @@ RUN apt-get update && apt-get install -y curl jq && mkdir /tmp/bashio \
# add the options.json to environment variable magic
COPY export-env-from-config.sh /export-env-from-config.sh
RUN find /etc/services.d/ -name run | xargs sed -i '1 a\source /export-env-from-config.sh' && \
find /etc/cont-init.d/ -type f | xargs sed -i '1 a\source /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
ADD https://raw.githubusercontent.com/hassio-addons/addon-debian-base/v5.1.0/base/rootfs/etc/cont-init.d/00-banner.sh /etc/cont-init.d/
ADD https://raw.githubusercontent.com/hassio-addons/addon-debian-base/v5.1.0/base/rootfs/etc/cont-init.d/00-banner.sh /etc/s6-overlay/s6-rc.d/banner/
RUN mkdir -p /etc/s6-overlay/s6-rc.d/banner && \
echo "oneshot" > /etc/s6-overlay/s6-rc.d/banner/type && \
echo "/etc/s6-overlay/s6-rc.d/banner/script" > /etc/s6-overlay/s6-rc.d/banner/up && \
touch /etc/s6-overlay/s6-rc.d/user/contents.d/banner && \
mv /etc/s6-overlay/s6-rc.d/banner/00-banner.sh /etc/s6-overlay/s6-rc.d/banner/script && \
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