Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
4f1be8ed
Unverified
Commit
4f1be8ed
authored
Jan 09, 2024
by
Timothy Jaeryang Baek
Committed by
GitHub
Jan 09, 2024
Browse files
Merge pull request #433 from Contribution-Tracking/shell-scripts
refactor: run.sh and run-ollama-docker.sh
parents
d71e3c9d
db51c220
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
11 deletions
+37
-11
run-ollama-docker.sh
run-ollama-docker.sh
+18
-6
run.sh
run.sh
+19
-5
No files found.
run-ollama-docker.sh
View file @
4f1be8ed
#!/bin/bash
host_port
=
11434
container_port
=
11434
read
-r
-p
"Do you want ollama in Docker with GPU support? (y/n): "
use_gpu
docker
rm
-f
ollama
||
true
docker
rm
-f
ollama
||
true
docker pull ollama/ollama
docker pull ollama/ollama:latest
# CPU Only
docker run
-d
-v
ollama:/root/.ollama
-p
11434:11434
--name
ollama ollama/ollama
docker_args
=
"-d -v ollama:/root/.ollama -p
$host_port
:
$container_port
--name ollama ollama/ollama"
# GPU Support
# docker run -d --gpus=all -v ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollama
if
[
"
$use_gpu
"
==
"y"
]
;
then
docker image prune
-f
docker_args+
=
" --gpus=all"
\ No newline at end of file
fi
docker run
"
$docker_args
"
docker image prune
-f
run.sh
View file @
4f1be8ed
docker build
-t
ollama-webui
.
#!/bin/bash
docker stop ollama-webui
||
true
docker
rm
ollama-webui
||
true
image_name
=
"ollama-webui"
docker run
-d
-p
3000:8080
--add-host
=
host.docker.internal:host-gateway
-v
ollama-webui:/app/backend/data
--name
ollama-webui
--restart
always ollama-webui
container_name
=
"ollama-webui"
docker image prune
-f
host_port
=
3000
\ No newline at end of file
container_port
=
8080
docker build
-t
"
$image_name
"
.
docker stop
"
$container_name
"
&>/dev/null
||
true
docker
rm
"
$container_name
"
&>/dev/null
||
true
docker run
-d
-p
"
$host_port
"
:
"
$container_port
"
\
--add-host
=
host.docker.internal:host-gateway
\
-v
"
${
image_name
}
:/app/backend/data"
\
--name
"
$container_name
"
\
--restart
always
\
"
$image_name
"
docker image prune
-f
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment