From 6eadfb8a734129f436e7c2fce9b6455dbdfcd8a5 Mon Sep 17 00:00:00 2001 From: James Radtke <47249757+cloudxabide@users.noreply.github.com> Date: Sat, 2 Dec 2023 14:47:05 -0500 Subject: [PATCH] Update TROUBLESHOOTING.md Made style/formatting changes suggested in commit conversation. --- TROUBLESHOOTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TROUBLESHOOTING.md b/TROUBLESHOOTING.md index 54cfce40..38c32711 100644 --- a/TROUBLESHOOTING.md +++ b/TROUBLESHOOTING.md @@ -31,11 +31,11 @@ By following these troubleshooting steps, you should be able to identify and res If you are running Docker on a M{1..3} based Mac and have taken the steps to run an x86 container, add "--platform linux/amd64" to the docker run command. Example: ```bash -docker run -d -p 3000:8080 --env-file=$OLLAMA_ENV_FILE --name ollama-webui --restart always ghcr.io/ollama-webui/ollama-webui:main +docker run -d -p 3000:8080 --name ollama-webui --restart always ghcr.io/ollama-webui/ollama-webui:main ``` Becomes ``` -docker run -it --platform linux/amd64 -d -p 3000:8080 -e OLLAMA_API_BASE_URL=http://10.10.10.20:11434/api --name ollama-webui --restart always ghcr.io/ollama-webui/ollama-webui:main +docker run -it --platform linux/amd64 -d -p 3000:8080 -e OLLAMA_API_BASE_URL=http://example.com:11434/api --name ollama-webui --restart always ghcr.io/ollama-webui/ollama-webui:main ```