Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions kibana/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ WORKDIR /usr/share/kibana
RUN ln -s /usr/share/kibana /opt/kibana

ENV ELASTIC_CONTAINER true
ENV I18N_LOCALE "en"
ENV PATH=/usr/share/kibana/bin:$PATH

# Set some Kibana configuration defaults.
Expand Down
4 changes: 4 additions & 0 deletions kibana/bin/kibana-docker
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,10 @@ done
# Files created at run-time should be group-writable, for Openshift's sake.
umask 0002

if [[ -n "$I18N_LOCALE" ]]; then
echo "i18n.locale: $I18N_LOCALE" >> /usr/share/kibana/config/kibana.yml
fi

# The virtual file /proc/self/cgroup should list the current cgroup
# membership. For each hierarchy, you can follow the cgroup path from
# this file to the cgroup filesystem (usually /sys/fs/cgroup/) and
Expand Down