Skip to content
Snippets Groups Projects
Commit 6603cdfd authored by Allen Gilliland's avatar Allen Gilliland
Browse files

Merge pull request #2426 from metabase/docker-set-jvm-timezone

Docker set jvm timezone
parents eaf36711 386b7949
No related branches found
No related tags found
No related merge requests found
FROM java:openjdk-7-jre-alpine
FROM java:openjdk-8-jre-alpine
# need bash
RUN apk add --update bash
......
......@@ -25,5 +25,12 @@ if [ ! -z "$RDS_HOSTNAME" ]; then
fi
# Setup Java Options
JAVA_OPTS="-Dlogfile.path=target/log -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC"
if [ ! -z "$JAVA_TIMEZONE" ]; then
JAVA_OPTS="${JAVA_OPTS} -Duser.timezone=${JAVA_TIMEZONE}"
fi
# Launch the application
exec java -Dlogfile.path=target/log -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -jar /app/metabase.jar
exec java $JAVA_OPTS -jar /app/metabase.jar
......@@ -113,7 +113,8 @@
(defn init!
"General application initialization function which should be run once at application startup."
[]
(log/info (format "Starting Metabase version %s..." config/mb-version-string))
(log/info (format "Starting Metabase version %s ..." config/mb-version-string))
(log/info (format "System timezone is '%s' ..." (System/getProperty "user.timezone")))
(reset! metabase-initialization-progress 0.1)
;; First of all, lets register a shutdown hook that will tidy things up for us on app exit
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment