@@ -18,7 +18,7 @@ git clone https://github.com/Open-LLM-VTuber/OLV-Docker-Config
1818
1919### Download ZIP (for users without coding experience)
2020::: warning
21- This download method cannot be updated later, but it will work right now .
21+ If you download it this way, the configuration file ` conf.yaml ` can only be [ updated manually ] ( #manual-update ) .
2222:::
2323First, [ click here to go to the user configuration repository] ( https://github.com/Open-LLM-Vtuber/OLV-Docker-Config )
2424
@@ -216,4 +216,39 @@ docker logs -f open-llm-vtuber-latest
216216
217217After the logs show ` Uvicorn running on http://0.0.0.0:12393 ` , open ` http://localhost:12393 ` in your browser to access the web interface.
218218
219- That's it — you have successfully deployed Open LLM VTuber!
219+ That's it — you have successfully deployed Open LLM VTuber!
220+
221+ ## Update
222+
223+ ### Update configuration file
224+ There are two ways to update: via git or manually.
225+
226+ #### Git update
227+ Run the following commands in the ` OLV-Docker-Config ` directory:
228+ ``` bash
229+ git stash
230+ git pull
231+ git stash pop
232+ ```
233+ If there are conflicts, please resolve them manually.
234+
235+ #### Manual update
236+ Manually compare the new ` conf.yaml ` with the old ` conf.yaml ` and copy the parts that need updating into the old ` conf.yaml ` .
237+
238+ ChatGPT recommends this website: [ DiffCheck.ai — YAML Diff Checker] ( https://diffcheck.ai/yaml ) , but you can also use any other suitable site.
239+
240+ ### Pull the latest image
241+ If you're using Docker Desktop, click the ` Pull ` button next to ` Image ` .
242+
243+ If you're using the terminal, run:
244+ ``` bash
245+ docker pull openllmvtuber/open-llm-vtuber:latest
246+ ```
247+
248+ ### Restart the container
249+ If you're using Docker Desktop, click ` Restart ` under ` Containers ` .
250+
251+ If you're using the terminal, run:
252+ ``` bash
253+ docker-compose up -d
254+ ```
0 commit comments