This repository has been archived on 2024-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
|
#!/bin/bash
|
|
|
|
# Run this script to update the container.
|
|
# Will restart VLLM as well.
|
|
|
|
cd /local-llm-server || exit
|
|
|
|
git fetch
|
|
git reset --hard origin/master
|
|
|
|
supervisorctl restart vllm
|