mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-19 18:36:09 +02:00
Added an optional timezone configuration with the TZ ENV variable
This commit is contained in:
parent
f5a6136e6a
commit
8fb6f75402
2 changed files with 5 additions and 1 deletions
|
@ -19,7 +19,7 @@ RUN set -ex \
|
||||||
&& apk update \
|
&& apk update \
|
||||||
&& apk add build-base python-dev py-pip jpeg-dev jpeg zlib zlib-dev \
|
&& apk add build-base python-dev py-pip jpeg-dev jpeg zlib zlib-dev \
|
||||||
postgresql-dev libmcrypt-dev libmcrypt libpng-dev libpng \
|
postgresql-dev libmcrypt-dev libmcrypt libpng-dev libpng \
|
||||||
autoconf make g++ gcc git file gnupg re2c icu icu-dev \
|
autoconf make g++ gcc git file gnupg re2c icu icu-dev tzdata \
|
||||||
#&& echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
|
#&& echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
|
||||||
#&& echo '@community http://nl.alpinelinux.org/alpine/edge/community' >> /etc/apk/repositories \
|
#&& echo '@community http://nl.alpinelinux.org/alpine/edge/community' >> /etc/apk/repositories \
|
||||||
#&& apk add php7-session@community \
|
#&& apk add php7-session@community \
|
||||||
|
|
|
@ -6,4 +6,8 @@ if [ ! -e '/var/www/html/version.php' ]; then
|
||||||
chown -R www-data /var/www/html
|
chown -R www-data /var/www/html
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -n "$TZ"]; then
|
||||||
|
cp /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
||||||
|
fi
|
||||||
|
|
||||||
exec "$@"
|
exec "$@"
|
||||||
|
|
Loading…
Add table
Reference in a new issue