| # 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. |
| |
| services: |
| iotdb: |
| image: apache/iotdb:1.3.0-standalone |
| ports: |
| - "6667:6667" |
| environment: |
| - cn_internal_address=iotdb |
| - cn_internal_port=10710 |
| - cn_consensus_port=10720 |
| - cn_seed_config_node=iotdb:10710 |
| - dn_rpc_address=iotdb |
| - dn_internal_address=iotdb |
| - dn_rpc_port=6667 |
| - dn_mpp_data_exchange_port=10740 |
| - dn_schema_region_consensus_port=10750 |
| - dn_data_region_consensus_port=10760 |
| - dn_seed_config_node=iotdb:10710 |
| volumes: |
| - data:/iotdb/data |
| - logs:/iotdb/logs |
| |
| volumes: |
| data: |
| logs: |
| |
| # If you want to influence iotdb's logging behavior, e.g., to adapt the log retention |
| # then you need to adapt the log configurations and map them into the container |
| # see: https://stackoverflow.com/questions/78177657/for-apache-iotdb-service-deployed-by-docker-how-to-modify-to-only-print-specifi |
| |
| networks: |
| spnet: |
| external: true |