21 lines
567 B
YAML
21 lines
567 B
YAML
|
|
version: '3.8'
|
||
|
|
|
||
|
|
services:
|
||
|
|
doris-mcp-server:
|
||
|
|
image: doris-mcp-server:latest
|
||
|
|
container_name: doris-mcp-server
|
||
|
|
restart: always
|
||
|
|
network_mode: host
|
||
|
|
environment:
|
||
|
|
# Database configuration
|
||
|
|
- DORIS_HOST=localhost
|
||
|
|
- DORIS_PORT=9030
|
||
|
|
- DORIS_USER=admin
|
||
|
|
- DORIS_PASSWORD=
|
||
|
|
- DORIS_DATABASE=test
|
||
|
|
# Logging configuration
|
||
|
|
- LOG_LEVEL=INFO
|
||
|
|
- LOG_FILE_PATH=/app/logs/doris-mcp-server.log
|
||
|
|
volumes:
|
||
|
|
#- "/home/tscnlich/doris_mcp/config.env:/app/.env"
|
||
|
|
- "/home/tscnlich/doris_mcp/logs:/app/logs:rw"
|