Merge pull request #65 from linuxserver/versioning

Versioning
This commit is contained in:
aptalca 2019-02-07 16:14:59 -05:00 committed by GitHub
commit 2cd80be4ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 24 additions and 3 deletions

View File

@ -5,7 +5,10 @@ ARG BUILD_DATE
ARG VERSION
ARG TAUTULLI_RELEASE
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="sparklyballs"
LABEL maintainer="sparklyballs,thelamer"
# Inform app this is a docker env
ENV TAUTULLI_DOCKER=True
RUN \
echo "**** install packages ****" && \
@ -30,6 +33,10 @@ RUN \
tar xf \
/tmp/tautulli.tar.gz -C \
/app/tautulli --strip-components=1 && \
echo "**** Hard Coding versioning ****" && \
echo "None" > /app/tautulli/version.txt && \
echo "None" > /app/tautulli/version.lock && \
echo ${TAUTULLI_RELEASE} > /app/tautulli/release.lock && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \

View File

@ -8,7 +8,10 @@ ARG BUILD_DATE
ARG VERSION
ARG TAUTULLI_RELEASE
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="sparklyballs"
LABEL maintainer="sparklyballs,thelamer"
# Inform app this is a docker env
ENV TAUTULLI_DOCKER=True
RUN \
echo "**** install packages ****" && \
@ -33,6 +36,10 @@ RUN \
tar xf \
/tmp/tautulli.tar.gz -C \
/app/tautulli --strip-components=1 && \
echo "**** Hard Coding versioning ****" && \
echo "None" > /app/tautulli/version.txt && \
echo "None" > /app/tautulli/version.lock && \
echo ${TAUTULLI_RELEASE} > /app/tautulli/release.lock && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \

View File

@ -8,7 +8,10 @@ ARG BUILD_DATE
ARG VERSION
ARG TAUTULLI_RELEASE
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="sparklyballs"
LABEL maintainer="sparklyballs,thelamer"
# Inform app this is a docker env
ENV TAUTULLI_DOCKER=True
RUN \
echo "**** install packages ****" && \
@ -33,6 +36,10 @@ RUN \
tar xf \
/tmp/tautulli.tar.gz -C \
/app/tautulli --strip-components=1 && \
echo "**** Hard Coding versioning ****" && \
echo "None" > /app/tautulli/version.txt && \
echo "None" > /app/tautulli/version.lock && \
echo ${TAUTULLI_RELEASE} > /app/tautulli/release.lock && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \