1
0

Мелочи по основным скриптам

This commit is contained in:
2025-08-19 13:06:17 +08:00
parent 99634d85df
commit 2427885ddd
5 changed files with 1 additions and 4 deletions

24
up Executable file
View File

@@ -0,0 +1,24 @@
#!/bin/bash
docker run \
--pull=always \
--rm \
--detach \
--volume ./.data/ollama:/root/.ollama \
--publish 11434:11434 \
--name ai-ollama \
ollama/ollama
docker run \
--pull=always \
--rm \
--detach \
--volume ./.data/webui:/app/backend/data \
--publish 9999:8080 \
--add-host=host.docker.internal:host-gateway \
--name ai-webui \
ghcr.io/open-webui/open-webui:main
echo
echo "Open WebUI acessible on address http://localhost:9999/"
echo