Files
AdaConfig/docker-compose.yaml
ki.sagidullin d09dbf9c64 AdaConfig
2026-04-12 13:18:24 +05:00

19 lines
722 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
version: '3.8'
services:
ada:
image: ghcr.io/luna-system/ada:latest
container_name: ada_assistant
environment:
# Указываем IP-адрес вашего сервера с Ollama и порт
- OLLAMA_HOST=http://192.168.212.100:11434
# Дополнительная настройка для совместимости
- OLLAMA_ORIGINS=*
ports:
# Пробрасываем порты. 8000 - для API Ada, 5000 - для веб-интерфейса
- "8000:8000"
- "5000:5000"
volumes:
# Создаём постоянное хранилище для памяти и настроек Ada
- /mnt/Cache/Ada:/app/data
restart: unless-stopped