Merge pull request #24 from thelamer/master

set a default timezone as it is required for the application to even run #21
This commit is contained in:
aptalca 2019-04-17 18:10:28 -04:00 committed by GitHub
commit f97b402c7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 0 deletions

View File

@ -6,6 +6,8 @@ ARG VERSION
ARG BAZARR_VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="chbmb"
# hard set UTC in case the user does not define it
ENV TZ="Etc/UTC"
RUN \
echo "**** install packages ****" && \

View File

@ -6,6 +6,8 @@ ARG VERSION
ARG BAZARR_VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="chbmb"
# hard set UTC in case the user does not define it
ENV TZ="Etc/UTC"
RUN \
echo "**** install packages ****" && \

View File

@ -6,6 +6,8 @@ ARG VERSION
ARG BAZARR_VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="chbmb"
# hard set UTC in case the user does not define it
ENV TZ="Etc/UTC"
RUN \
echo "**** install packages ****" && \

View File

@ -168,6 +168,7 @@ Below are the instructions for updating containers:
## Versions
* **17.04.19:** - Add default UTC timezone if user does not set it.
* **23.03.19:** - Switching to new Base images, shift to arm32v7 tag.
* **22.02.19:** - Rebasing to alpine 3.9.
* **11.09.18:** - Initial release.

View File

@ -44,6 +44,7 @@ app_setup_block: |
# changelog
changelogs:
- { date: "17.04.19:", desc: "Add default UTC timezone if user does not set it." }
- { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
- { date: "22.02.19:", desc: "Rebasing to alpine 3.9." }
- { date: "11.09.18:", desc: "Initial release." }