Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update docker-compose of IoTDB #2811

Merged
merged 3 commits into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions installer/cli/deploy/standalone/iotdb/docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
version: "3.4"
services:
iotdb:
# 0.13.3 is the only recommended production ready version for edge side (standalone) deployment
image: apache/iotdb:0.13.3-node
image: apache/iotdb:1.3.0-standalone
ports:
# rpc port
- "6667:6667"
28 changes: 17 additions & 11 deletions installer/cli/deploy/standalone/iotdb/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,27 @@
version: "3.4"
services:
iotdb:
# 0.13.3 is the only recommended production ready version for edge side (standalone) deployment
image: apache/iotdb:0.13.3-node
image: apache/iotdb:1.3.0-standalone
ports:
- "6667:6667"
environment:
- cn_internal_address=iotdb-service
- cn_internal_port=10710
- cn_consensus_port=10720
- cn_seed_config_node=iotdb-service:10710
- dn_rpc_address=iotdb-service
- dn_internal_address=iotdb-service
- 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-service:10710
volumes:
- iotdb:/iotdb
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
- ./data:/iotdb/data
- ./logs:/iotdb/logs
networks:
spnet:

volumes:
iotdb:

networks:
spnet:
external: true
Loading