12 lines
185 B
Bash
12 lines
185 B
Bash
|
#!/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
|