Unverified Commit 4f1be8ed authored by Timothy Jaeryang Baek's avatar Timothy Jaeryang Baek Committed by GitHub
Browse files

Merge pull request #433 from Contribution-Tracking/shell-scripts

refactor: run.sh and run-ollama-docker.sh
parents d71e3c9d db51c220
#!/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
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
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment