First commit

This commit is contained in:
bigboxuser
2025-08-31 13:37:36 +03:00
commit 4fcd91dd04
13 changed files with 222 additions and 0 deletions

8
ollama-webui/docker-compose Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
docker-compose up -d
models=("smollm2:135m" "all-minilm:22m" "nomic-embed-text" "qwen2.5:0.5b" "qwen3:0.6b" "gemma3:1b" "hf.co/mradermacher/DeepSeek-R1-Distill-Qwen-1.5B-Fully-Uncensored-i1-GGUF:Q4_K_S")
for model in "${models[@]}"; do
docker exec $(docker ps | grep ollama | awk '{print $1}') bash -c "ollama pull $model"
done
echo ""
echo "---OLLAMA INIT DONE !"