Fixes/host and trim (#74)

* Add host override

* Default trim to no
This commit is contained in:
Cory Forsstrom
2021-11-10 12:36:21 -08:00
committed by GitHub
parent 0a4938c8a7
commit 190cc66502
6 changed files with 19 additions and 12 deletions

View File

@@ -32,7 +32,7 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN wget https://github.com/xteve-project/xTeVe-Downloads/raw/master/xteve_linux_amd64.zip -O temp.zip; unzip temp.zip -d /usr/bin/; rm temp.zip
# Add lazystream
RUN wget https://github.com/tarkah/lazystream/releases/download/v1.11.8/lazystream-v1.11.8-x86_64-unknown-linux-musl.tar.gz -O lazystream.tar.gz; \
RUN wget https://github.com/tarkah/lazystream/releases/download/v1.12.0/lazystream-v1.12.0-x86_64-unknown-linux-musl.tar.gz -O lazystream.tar.gz; \
tar xzf lazystream.tar.gz; \
mv ././lazystream /usr/bin/lazystream; \
rm lazystream.tar.gz; \
@@ -78,7 +78,8 @@ ENV PUID=1000 \
embyApiKey= \
embyID= \
use_plexAPI=no \
trim_xmltv=yes
trim_xmltv=no \
hostOverride=
# Expose Port
EXPOSE ${XTEVE_PORT}