You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by jf...@apache.org on 2020/04/26 09:17:56 UTC

[incubator-iotdb] branch master updated: Added Dockerfile for 0.9.1 for JRE 8

This is an automated email from the ASF dual-hosted git repository.

jfeinauer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new cbc9376  Added Dockerfile for 0.9.1 for JRE 8
cbc9376 is described below

commit cbc9376681c151f9aa10c5dcc1672426c2e78e1d
Author: Julian Feinauer <j....@pragmaticminds.de>
AuthorDate: Sun Apr 26 11:17:39 2020 +0200

    Added Dockerfile for 0.9.1 for JRE 8
---
 docker/src/main/Dockerfile-0.9.1-jre8 | 41 +++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/docker/src/main/Dockerfile-0.9.1-jre8 b/docker/src/main/Dockerfile-0.9.1-jre8
new file mode 100644
index 0000000..04a478a
--- /dev/null
+++ b/docker/src/main/Dockerfile-0.9.1-jre8
@@ -0,0 +1,41 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+FROM openjdk:8-jre
+RUN apt update \
+  # procps is for `free` command
+  && apt install wget unzip lsof procps -y \
+  && wget https://www-us.apache.org/dist/incubator/iotdb/0.9.1-incubating/apache-iotdb-0.9.1-incubating-bin.zip \
+  # if you are in China, use the following URL
+  #&& wget http://mirrors.tuna.tsinghua.edu.cn/apache/incubator/iotdb/0.9.1-incubating/apache-iotdb-0.9.1-incubating-bin.zip \
+  && unzip apache-iotdb-0.9.1-incubating-bin.zip \
+  && rm apache-iotdb-0.9.1-incubating-bin.zip \
+  && mv apache-iotdb-0.9.1-incubating /iotdb \
+  && apt remove wget unzip -y \
+  && apt autoremove -y \
+  && apt purge --auto-remove -y \
+  && apt clean -y
+EXPOSE 6667
+EXPOSE 31999
+EXPOSE 5555
+EXPOSE 8181
+VOLUME /iotdb/data
+VOLUME /iotdb/logs
+ENV PATH="/iotdb/sbin/:/iotdb/tools/:${PATH}"
+ENTRYPOINT ["/iotdb/sbin/start-server.sh"]