You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2022/08/09 10:03:09 UTC

[iotdb] branch rel/0.13 updated: add docker file of release 0.13.1 (#6934)

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

haonan pushed a commit to branch rel/0.13
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/rel/0.13 by this push:
     new 6e635798a7 add docker file of release 0.13.1 (#6934)
6e635798a7 is described below

commit 6e635798a7bedd3ee4f5cbb079c5533adff9d64b
Author: 张正明 <87...@qq.com>
AuthorDate: Tue Aug 9 18:03:04 2022 +0800

    add docker file of release 0.13.1 (#6934)
    
    * release 0.13.1 docker
    
    * add grafana-connector docker image
---
 .../src/main/Dockerfile-0.13.1-grafana-connector   | 41 ++++++++++++++++++++
 docker/src/main/Dockerfile-0.13.1-node             | 45 ++++++++++++++++++++++
 2 files changed, 86 insertions(+)

diff --git a/docker/src/main/Dockerfile-0.13.1-grafana-connector b/docker/src/main/Dockerfile-0.13.1-grafana-connector
new file mode 100644
index 0000000000..cc7fd0edd1
--- /dev/null
+++ b/docker/src/main/Dockerfile-0.13.1-grafana-connector
@@ -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:11-jre-slim
+RUN apt update \
+  # procps is for `free` command
+  && apt install wget unzip lsof procps -y \
+  && wget https://downloads.apache.org/iotdb/0.13.1/apache-iotdb-0.13.1-grafana-connector-bin.zip \
+  # if you are in China, use the following URL
+  #&& wget https://mirrors.tuna.tsinghua.edu.cn/apache/iotdb/0.13.1/apache-iotdb-0.13.1-grafana-connector-bin.zip \
+  && unzip apache-iotdb-0.13.1-grafana-connector-bin.zip \
+  && rm apache-iotdb-0.13.1-grafana-connector-bin.zip \
+  && mv apache-iotdb-0.13.1-grafana-connector-bin /iotdb-grafana-connector \
+  && apt remove wget unzip -y \
+  && apt autoremove -y \
+  && apt purge --auto-remove -y \
+  && apt clean -y
+# rpc port
+EXPOSE 8888
+VOLUME /iotdb-grafana-connector/config
+RUN echo "#!/bin/bash" > /iotdb-grafana-connector/runboot.sh
+RUN echo "java -Djava.security.egd=file:/dev/./urandom -jar /iotdb-grafana-connector/iotdb-grafana-connector.war" >> /iotdb-grafana-connector/runboot.sh
+RUN chmod a+x /iotdb-grafana-connector/runboot.sh
+WORKDIR /iotdb-grafana-connector
+ENTRYPOINT ["./runboot.sh"]
diff --git a/docker/src/main/Dockerfile-0.13.1-node b/docker/src/main/Dockerfile-0.13.1-node
new file mode 100644
index 0000000000..8107aeec93
--- /dev/null
+++ b/docker/src/main/Dockerfile-0.13.1-node
@@ -0,0 +1,45 @@
+#
+# 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:11-jre-slim
+RUN apt update \
+  # procps is for `free` command
+  && apt install wget unzip lsof procps -y \
+  && wget https://downloads.apache.org/iotdb/0.13.1/apache-iotdb-0.13.1-server-bin.zip \
+  # if you are in China, use the following URL
+  #&& wget https://mirrors.tuna.tsinghua.edu.cn/apache/iotdb/0.13.1/apache-iotdb-0.13.1-server-bin.zip \
+  && unzip apache-iotdb-0.13.1-server-bin.zip \
+  && rm apache-iotdb-0.13.1-server-bin.zip \
+  && mv apache-iotdb-0.13.1-server-bin /iotdb \
+  && apt remove wget unzip -y \
+  && apt autoremove -y \
+  && apt purge --auto-remove -y \
+  && apt clean -y
+# rpc port
+EXPOSE 6667
+# JMX port
+EXPOSE 31999
+# sync port
+EXPOSE 5555
+# monitor port
+EXPOSE 8181
+VOLUME /iotdb/data
+VOLUME /iotdb/logs
+ENV PATH="/iotdb/sbin/:/iotdb/tools/:${PATH}"
+ENTRYPOINT ["/iotdb/sbin/start-server.sh"]