mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-24 12:45:45 +00:00
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>
21 lines
496 B
YAML
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 |