Browse Source

Add 'Dockerfile'

天问 2 months ago
parent
commit
48261b764d
1 changed files with 25 additions and 0 deletions
  1. 25 0
      Dockerfile

+ 25 - 0
Dockerfile

@@ -0,0 +1,25 @@
+# https://github.com/elastic/kibana-docker
+FROM docker.elastic.co/kibana/kibana:5.3.0
+
+USER root
+
+RUN sed -i 's/archive.ubuntu.com/mirrors.163.com/g' /etc/apt/sources.list
+
+RUN \
+  apt-get update && \
+  apt-get install -y curl git unzip vim wget && \
+  apt-get install -y language-pack-zh-hans && \ 
+  rm -rf /var/lib/apt/lists/*
+RUN locale
+ENV LANG=zh_CN.UTF-8\
+    LANGUAGE=zh_CN:zh:en_US:en\
+    LC_ALL=zh_CN.UTF-8\
+    TZ=Asia/Shanghai\
+    TERM=xterm
+
+RUN ln -fs /usr/share/zoneinfo/$TZ /etc/localtime && \
+        echo $TZ > /etc/timezone && \
+        dpkg-reconfigure --frontend noninteractive tzdata
+
+USER kibana
+CMD /usr/local/bin/kibana-docker