Initial commit: local SQL expert AI (Ollama + CLI + prompts + systemd timer)

This commit is contained in:
2026-01-27 21:30:15 +01:00
commit 394edc1709
18 changed files with 574 additions and 0 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
services:
ollama:
image: ollama/ollama:latest
container_name: ollama
restart: unless-stopped
# Uses the host network stack (routing/DNS identical to the host, incl. br0)
network_mode: "host"
volumes:
- ollama:/root/.ollama
environment:
# Keep model in memory a bit (optional)
OLLAMA_KEEP_ALIVE: "10m"
volumes:
ollama: