mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
Docker: Configurable time zone
This commit is contained in:
parent
0a993399dc
commit
7f0bf111fe
1 changed files with 7 additions and 0 deletions
|
@ -7,6 +7,13 @@
|
||||||
FROM node:lts-slim
|
FROM node:lts-slim
|
||||||
LABEL maintainer="Etherpad team, https://github.com/ether/etherpad-lite"
|
LABEL maintainer="Etherpad team, https://github.com/ether/etherpad-lite"
|
||||||
|
|
||||||
|
ARG TIMEZONE=
|
||||||
|
RUN \
|
||||||
|
[ -z "${TIMEZONE}" ] || { \
|
||||||
|
ln -sf /usr/share/zoneinfo/"${TIMEZONE#/usr/share/zoneinfo/}" /etc/localtime; \
|
||||||
|
dpkg-reconfigure -f noninteractive tzdata; \
|
||||||
|
}
|
||||||
|
|
||||||
# plugins to install while building the container. By default no plugins are
|
# plugins to install while building the container. By default no plugins are
|
||||||
# installed.
|
# installed.
|
||||||
# If given a value, it has to be a space-separated, quoted list of plugin names.
|
# If given a value, it has to be a space-separated, quoted list of plugin names.
|
||||||
|
|
Loading…
Reference in a new issue