DB-GPT/docker/datasources/hive/docker-compose.yml
云锋 94b51284e0
feat(datasource): Database connection Renewal (#2359)
Co-authored-by: aries_ckt <916701291@qq.com>
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com>
Co-authored-by: ‘yanzhiyonggit config --global user.email git config --global user.name ‘yanzhiyong <zhiyong.yan@clife.cn>
2025-02-22 18:44:21 +08:00

21 lines
496 B
YAML

version: '3.10'
services:
hiveserver2:
image: apache/hive:4.0.1
container_name: hiveserver2
environment:
- SERVICE_NAME=hiveserver2
ports:
- "10000:10000" # HiveServer2 JDBC Port
- "10002:10002" # HiveServer2 Web UI Port
volumes:
- hive-warehouse:/opt/hive/data/warehouse # Persist Hive data
networks:
- hive-network
volumes:
hive-warehouse: # For Hive data persistence
networks:
hive-network: # Custom network for Hive services