9 lines
421 B
Bash
Executable File
9 lines
421 B
Bash
Executable File
#!/bin/bash
|
|
docker-compose up -d
|
|
models=("devstral-small-2:cloud" "gemini-3-flash-preview:cloud" "nomic-embed-text" "ministral-3:3b" "qwen3:0.6b" "gemma3:270m" "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 !"
|