AdaConfig

This commit is contained in:
ki.sagidullin
2026-04-12 13:14:08 +05:00
commit d09dbf9c64
2 changed files with 70 additions and 0 deletions

19
docker-compose.yaml Normal file
View File

@@ -0,0 +1,19 @@
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