HuggingMes / docker-compose.yml
somratpro's picture
fix: correct spelling of 'HuggingMes' across multiple files
1428d20
raw
history blame contribute delete
623 Bytes
services:
huggingmes:
build:
context: .
args:
HERMES_AGENT_VERSION: ${HERMES_AGENT_VERSION:-latest}
image: huggingmes:local
ports:
- "7861:7861"
environment:
LLM_MODEL: ${LLM_MODEL:-openrouter/anthropic/claude-sonnet-4}
LLM_API_KEY: ${LLM_API_KEY:-}
GATEWAY_TOKEN: ${GATEWAY_TOKEN:-local-dev-token}
TELEGRAM_BOT_TOKEN: ${TELEGRAM_BOT_TOKEN:-}
TELEGRAM_ALLOWED_USERS: ${TELEGRAM_ALLOWED_USERS:-}
HF_TOKEN: ${HF_TOKEN:-}
SPACE_HOST: ${SPACE_HOST:-localhost:7861}
volumes:
- huggingmes-data:/opt/data
volumes:
huggingmes-data: