Merge pull request #44 from thelamer/master

#43 add default UTC timezone if user does not define it
This commit is contained in:
aptalca 2019-05-09 22:51:03 -04:00 committed by GitHub
commit 02d1716b6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 1 deletions

View file

@ -5,6 +5,8 @@ ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="sparklyballs"
# hard set UTC in case the user does not define it
ENV TZ="Etc/UTC"
# copy patches folder
COPY patches/ /tmp/patches/

View file

@ -5,6 +5,8 @@ ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="sparklyballs"
# hard set UTC in case the user does not define it
ENV TZ="Etc/UTC"
# copy patches folder
COPY patches/ /tmp/patches/

View file

@ -5,6 +5,8 @@ ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="sparklyballs"
# hard set UTC in case the user does not define it
ENV TZ="Etc/UTC"
# copy patches folder
COPY patches/ /tmp/patches/

View file

@ -178,6 +178,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
* **09.05.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.
* **16.01.19:** - Add pipeline logic and multi arch.

View file

@ -79,6 +79,7 @@ app_setup_nginx_reverse_proxy_block: "Access WebUI at `<your-ip>:8181` and walk
# changelog
changelogs:
- { date: "09.05.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: "16.01.19:", desc: "Add pipeline logic and multi arch." }