blob: 38e67e1f9a7845cdf55b9c3c1dd1bd87a3e680a3 [file] [log] [blame]
#
# 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.
#
#This file allow you build an IoTDB image from binary files.
FROM openjdk:11-jre-slim
RUN apt update \
## procps is for `free` command
&& apt install wget unzip lsof procps -y \
&& wget http://mirrors.tuna.tsinghua.edu.cn/apache/incubator/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-bin.zip \
##if you are not in China, please use the following url
#&& wget https://www-us.apache.org/dist/incubator/iotdb/0.8.2-incubating/apache-iotdb-0.8.2-incubating-bin.zip \
&& unzip apache-iotdb-0.8.2-incubating-bin.zip \
&& mv apache-iotdb-0.8.2-incubating/* /iotdb/ \
&& rm apache-iotdb-0.8.2-incubating-bin.zip \
&& apt remove wget unzip -y \
&& apt autoremove -y \
&& apt purge --auto-remove -y \
&& apt clean -y
EXPOSE 6667
EXPOSE 31999
VOLUME /iotdb/data
VOLUME /iotdb/logs
ENTRYPOINT ["/iotdb/sbin/start-server.sh"]